KNIME Javascript view - require.js (Using external js libraries)

Can someone tell me where I’m going wrong in importing this library using require.js

var body = document.getElementsByTagName('body')[0];
var html = '<div id="container"></div>';

body.innerHTML = html;


require.config({
    paths: {
        'chart': 'https://code.highcharts.com/highcharts'
    }
});

require(['chart'], function(Highcharts) {
Highcharts.chart('container', {

    xAxis: {
        categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 
            'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
    },

    series: [{
        data: [29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4],
        type: 'column'
    }]

});
});
1 Like

Hi,
This seems to have something to do with the highcharts version. Version 7.0.3 works fine. You can try that by replacing the path with this: https://code.highcharts.com/7.0.3/highcharts. I am not sure why 8.2.0 does not work. Maybe you can try the method that I showed here: Using external JS libraries via webTemplate folder.
Kind regards,
Alexander

2 Likes

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.