@nocture wrote:
i using ionic 3 import * as HighCharts from ‘highcharts’;
i can display chart by the below codeionViewDidLoad() {
var myChart = HighCharts.chart(‘container’, {
chart: {
type: ‘bar’
},
title: {
text: ‘Fruit Consumption’
},
xAxis: {
categories: [‘Apples’, ‘Bananas’, ‘Oranges’]
},
yAxis: {
title: {
text: ‘Fruit eaten’
}
},
series: [{
name: ‘Jane’,
data: [1, 0, 4]
}]
});
}i need to update xAxis category update without reloading chart again
Posts: 1
Participants: 1