I am creating highchart in react in which I have thousand of data. I have to map that data based on date and completion status(on that particular date how many status got completed).I am not able to create area chart for that and how to map whole data(total 522) in highchart for different dates. Please suggest any help would be
Tag: react-highcharts
How to display values on line stacked columns on highcharts
I want to display the value on the growth in the stacked column but it hasn’t worked yet, can anyone help me? ;( I set it on the datalabel like it still doesn’t work http://jsfiddle.net/ndhanajh06/r16e2Lyw/2/ Answer You have used spline series type, so you need to enable data labels for spline, not line: Live demo: http://jsfiddle.net/BlackLabel/fputh18a/ API Reference: https://api.highcharts.com/highcharts/plotOptions.spline.dataLabels
How to remove decimal values on x-axis of bar chart : Highcharts
I am having trouble setting integer only values to the x-axis of the bar chart. Can someone help me as to how to solve this. This is my sandbox: https://codesandbox.io/s/react-line-chart-forked-0409lk?file=/src/LineChart.js Have tried, allowDecimal: false, min:0, float:0. Nothing worked out. Help is appreciated Answer You should put the tickInterval: 1, in the yAxis