我想在Jaspersoft Community 6.2.2的自定义可视化组件中使用Highcharts。基本设置(基本配置的JSON文件和执行实际可视化的Javascript文件)对我来说很清楚。示例适用于我的设置。但是,我不明白在Javascript文件中写什么来使Highcharts工作。基本上,我正在寻找像以下Javascript代码:
define('example', ['https://code.jquery.com/jquery-3.0.0.js','http://code.highcharts.com/highcharts.js'],
function ($, Highcharts)
{
return function (instanceData) {
$('#container').highcharts({
chart: {type: 'bar'},
title: {text: 'Fruit Consumption'},
xAxis: {categories: ['Apples', 'Bananas', 'Oranges']},
yAxis: {title: {text: 'Fruit eaten'}},
series: [{name: 'Jane',data: [1, 0, 4]}, {name: 'John',data: [5, 7, 3]}]
});
};
});
为了在Jaspersoft中显示Highcharts图表,请注意这应该如何?帮助赞赏。