- Flexmonster is an open-source reporting tool that provides JavaScript tool for data visualization. The solution allows users to handle data sets, OLAP cubes and SQL databases with files up to 100 MB.
- Displays Highcharts image from the Flexmonster library
- Run
npm i
to install dependencies
- To start the server on localhost://8100 type: 'ionic serve'
home.page.ts
function to draw highchart using flexmonster
drawChart() {
this.pivot.flexmonster.highcharts?.getData(
{
type: "spline"
},
(data: Flexmonster.GetDataValueObject) => {
Highcharts.chart('highcharts-container', <Highcharts.Options>data);
}
);
}
- Status: Basic chart working
- To-do: Fix menu. Add charts.
- This project is licensed under the terms of the MIT license.