File "blabla.html"

Full Path: /home/analogde/www/Bookmarks/CHESS_ON/blabla.html
File size: 912 bytes
MIME-type: text/html
Charset: utf-8

// Include the core fusioncharts file from core  -
//import FusionCharts from 'fusioncharts/core';

// Include the chart from viz folder
// E.g. - import ChartType from fusioncharts/viz/[ChartType]
//import Column2D from 'fusioncharts/viz/column2d';

// Include the fusion theme
///import FusionTheme from 'fusioncharts/themes/es/fusioncharts.theme.fusion'

<script src="Charts_2022/js/fusioncharts.js"></script>

// Add the chart and theme as dependency
// E.g. FusionCharts.addDep(ChartType)
//FusionCharts.addDep(Column2D);
//FusionCharts.addDep(FusionTheme);

// Create an Instance with chart options
var chartInstance = new FusionCharts({
    type: 'Column2D',
    width: '700', // Width of the chart
    height: '400', // Height of the chart
    dataFormat: 'jsonurl',
    dataSource: 'https://static.fusioncharts.com/sample/oilReserves.json'
});
// Render
chartInstance.render();