score:20
You need to set the tickInterval
. For some funky reason it is trying to divide the 15 points you have evenly into ticks (0 to 14 is 15 points) and it doesn't want to end on an odd value of ticks so it rounds up. This is all supposition. Anyway, try this:
yAxis: {
min: 0,
max: 14,
tickInterval: 2
},
score:7
This problem bugged me for days, and I kept hitting this page with Bing. Anwer here has been helpful, but the issue in my side was fixed following another sample, since I had static tick to set.
Here is something similar to my final result (though it can be set dynamic);
yAxis: {
tickPositioner: function () {
var positions = [0,1,2,3,4,5,6,7,8,9,10];
return positions;
}
},
hope this helps.
Source: stackoverflow.com
Related Query
- Highcharts yAxis max not working
- yAxis tickinterval in highcharts is not working as per the value
- highcharts yaxis start on 1 min:1 not working
- Min/Max yAxis not working correctly in Highcharts
- Highcharts yaxis labels not working
- Decimals on yAxis are not being displayed, even if that same code works on highcharts jsfiddle
- Highcharts calculated max value not working with 2+ Y axis
- Dynamically changing Highcharts Theme through Jquery code not working
- Resize highcharts using react-grid-layout not working
- Angular HighCharts ParlimentChart is not working
- highcharts redraw and reflow not working
- Highcharts - yAxis logarithmic scale and allowDecimals set to false not seeming to have any effect
- Why are the labels for my opposite yaxis in Highcharts not showing up?
- DataLabels formatter not working in Highcharts Sankey Diagram
- Highcharts shared tooltip for line series and scatter plot not working
- Highcharts async drilldown (3 level) - drillup not working
- Color contrast setting on dataLabels style parameter using Highcharts 5 is not working on some colors
- Panning in Highcharts will not allow to go back to the max of the xAxis
- Highcharts yAxis is not scaling to fill available height
- JavaScript code inside TypeScript file .ts not working
- Highcharts - update column graph with setData() not working
- Multi-Line Title is not working when we export to PNG using CanVG - Highcharts
- Highcharts not working on Heroku environment, works on local environment
- Second yAxis does not scale according to series in Highcharts
- Highcharts v6.0.0 Annotations Not Working
- angularjs and highcharts / highchartsNG - renderTo not working
- Highcharts Bar Chart Zoom not working
- Setting yAxis Max value in highcharts
- c# WPF Webbrowser with Highchart, Javascript from external source not working "An error has occurred in the script on this page"
- Highcharts map example not working
More Query from same tag
- Highcharts issue when dealing with 3D pie and large labels
- How to set the x axis dynamically in High Charts 2.3.5
- Highcharts Tooltip - Returns unwanted empty string causing render problems
- Highcharts. Dynamic labels inside donut chart on mouseOver
- Dynamically update highcharts via setData for Yii-created Highcharts Widget
- Increase the size of one country on a HighCharts map?
- Get dates highcharts onChange
- Highcharts line chart tooltips not showing correctly?
- Highcharts- how to get focus only when the cursor enter the point?
- HighStock Multiple series from CSV file (Arduino Based & JavaScript)
- Highcharts Multiple series with database
- Send variables from Symfony2 PHP file to js file
- Heatmap: Get related data of the hovered cell on mouseOver
- Highcharts Error #14 with SPServices
- Multiple Google Gauges with different option sets
- How to draw arrows on a line-chart with Highcharts?
- In HighChart (Scattar ) while adding dynamic data, existing data geting removed randomly
- Remove Y-Axis GridLines on Highcharts
- Add custom tooltip for x axis label on hover action
- Highchart Pattern fill
- Old state is being shown despite updating in React Highcharts click event
- High chart how to process config if get config from DB and it contianed a function?
- Angular 2 Highcharts Cannot read property 'info' of undefined
- drilldown charts with more than one level
- Mouse out event on highcharts
- Highstock ranged overlay
- how to apply tooltip formatter in charts module drupal
- highcharts, toggle a category?
- Highcharts + Bootstrap .table-responsive issue
- Is there any way to highlight one particular series in highcharts?