score:0
This problem looks like a bug, so I reported it here: https://github.com/highcharts/highcharts/issues/10532
To workaround, use tickPositioner
function:
xAxis: {
tickPositioner: function() {
var ticks = [];
for (var i = this.dataMin; i < this.dataMax; i++) {
ticks.push(i);
}
return ticks;
},
...
},
Live demo: https://jsfiddle.net/BlackLabel/7bgj6tvs/
API Reference: https://api.highcharts.com/highcharts/xAxis.tickPositioner
Source: stackoverflow.com
Related Query
- In Highcharts after zoom in and zoom out some of the x-axis values are not display
- After Formatting the x-Axis the initial and end values are not properly coming
- how to pass values to tooltip which not in x and y axis in highcharts
- After setting the yAxis max value, some datalabels are not showing
- How to make the Y Axis values not start from 0 in highcharts? How to display forcefully display the last category data on X axis in HighCharts ?
- Highcharts multiple x axis and yaxis. The width of the 1st x-axis is not in sync with browser resize
- highcharts not displaying line when last point is before current x Axis minimum and next point is after current X Axis maximum
- Highcharts xAxis padding is lost when navigator when zooming in and out and can't get the padding back when zoom out
- highchats in r shiny: the x values on click are not the real values of my date axis
- Category names and the chart are not aligned in polar chart, Highcharts
- Highcharts treemap with drillnodes and color axis : do not display sub level colors in the main level
- Highcharts custom indicator does not affect y axis range after zoom
- Color columns based on x axis and not on values (y axis) in highcharts
- Highcharts axis does not show properly values when numbers are so small
- Highcharts - best way to handle and display zero (or negative) values in a line chart series with logarithmic Y axis
- Highcharts not displaying data at some zoom levels
- Why are the labels for my opposite yaxis in Highcharts not showing up?
- Align y axis tick "outside" on highstock, so they are the same as on highcharts
- Highcharts - Bar - Setting the X axis width and the chart area width to be constant
- Legend and Axis titles not showing in Highcharts Graph
- Legend and Axis titles not showing in Highcharts Graph
- Highchart: can I make sure the values on the Y axis are only integers?
- HighCharts scatter plot with Datetime on X Axis not plotting values correctly
- DataLabels in Highcharts are outside the container / not showing
- Highcharts - Tooltip and series name are out of their boxes in chrome
- Highcharts - how to create multiple y axis and group the data series
- Highcharts - Why is there extra spacing before the first column and after the last column?
- Negative values in the data not showing in highcharts linechart
- HighCharts and Map Bubble are not compatible
- Get the x axis range on selecting a zoom range in Highcharts
More Query from same tag
- "pointAttr" attribute is missing in Highcharts library 5.0.0
- How to make drill down in stacked Column Line chart in Highchart
- Highcharts Uncaught TypeError: Cannot set property 'day' of undefined
- highcharts, stacked column, switchrowsandcolumns
- Hicharts.js Boxplots with a mean line
- How can I create a daily chart with HighCharts
- How to hardcode chart data in my Model then have my Controller pull it from there to display it. Using Highcharts
- Highcharts Control Basic DrilDown Using Dom
- Data not showing with the Timestamp Values : Highcharts
- How to bind data in SQL Server to Highcharts?
- Highcharts - Line chart is using wrong TimeZone
- Highstock - Set extremes beyond the data range
- Unicode character not displayed in HighChart marker
- How to add an item to Highcharts legend?
- Formating my json for highcharts
- How to show a legend for a bar chart in Ruby on Rails?
- Highchart js bar graph label left alignment
- How to get current width of highcharts column
- Gson to get Json value for a pie chart using Highcharts
- Highcharts solidgauge : How can I disable gradient fill?
- Javascript array of arrays query
- Highcharts - drawing gridlines only up to the series
- dynamic highchart series based on click
- Highcharts plugin/extension that runs after the chart has loaded
- Highstocks Plotline multi-color
- Highchart labels are selected if I hover over tool-tip, while dragging the chart
- Highstock chart tooltip activation only when inside the chart
- Highchart bar chart handle over lapping data lables for series
- I tried to add colors to X-Axis labels without success
- Changing data series type dynamically with Highcharts-angular