How to create responsive highchart while using pivottable?
Is all the highchart method available here?
Give sample to create responsive highchart.
Thanks in advance
1 answer
Hello, Ezhumalai,
Thank you for reaching out to us.
All properties supported by default are described in our documentation dedicated to the integration with Hightcharts.
In case additional adjustments are required, the data
object needs to be modified before it is passed to the Highcharts:
function createChart() {
pivot.highcharts.getData({
type: "areaspline"
}, function (data) {
*data modifications*
Highcharts.chart('highchartsContainer', data);
}, function (data) {
*data modifications*
Highcharts.chart('highchartsContainer', data);
});
}
Detailed information about the structure of the data
object itself can be found in Highcharts documentation.
More examples of integration with Highcharts can be found in our CodePen.
We hope it helps.
Kind regards,
WebDataRocks Team