score:9
Accepted answer
what you need is tickinterval in xaxis:
xaxis: {
type: 'datetime',
tickinterval: 1
}
updated your jsfiddle here: http://jsfiddle.net/nr8vg/1/
score:10
datetime axes are based on milliseconds, so an interval of one hour is: 3600 * 1000.
the solution above does not work in charts of type: area.
so if your xaxis is in days you could use:
chart: {
type: 'area'
},
xaxis: {
type: 'datetime',
tickinterval: 24 * 3600 * 1000
}
Source: stackoverflow.com
Related Query
- How to show all values at datetime axis in highcharts?
- How to show only specific x-axis values on datetime axis in Highcharts
- How To Show All Data Labels For Datetime Axis In Highcharts
- How to show equally spaced axis for datetime for billing cycle related data on highcharts
- how to pass values to tooltip which not in x and y axis in highcharts
- HighCharts scatter plot with Datetime on X Axis not plotting values correctly
- How can I force ticks/grid lines on a Highcharts datetime X axis to arbitrarily line up with data points?
- how to show column and area charts with different y axis with same category and same x axis in highcharts
- How can I show all Timeline Highcharts data without any overlapping?
- 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 ?
- In highchart how to show y axis values in reverse order
- How to show values in Highcharts tooltip other than x and y when data points are too high?
- Show only two axis values in highcharts
- How can I put xAxis in highcharts starting in the horizontal line when all values are in 0?
- Stacked Bar Highcharts how to show the values
- How to shift data using Series.addPoint without shifting x axis values in highcharts
- How to show first and last label of x axis Highcharts
- Highcharts - How to show intermediate values on Area chart
- How to Show Same Month name of two years in X axis of Highcharts
- Highcharts chart doesn't show all data points in X axis
- How to spread Y Axis values in "area" chart using HighCharts
- how to display total count of all the bar values at the top- Highcharts colum- react highhcharts
- How to properly configure DateTime axis for Highcharts on Android?
- HIGHCHARTS - Given a series with UNIX stamps and values pairs for the data, how do I show only the date for the first and last point on xAxis?
- Showing all values on one point on x axis and changing range for rCharts highcharts
- Highcharts - how to position values closer to the Y axis
- Highcharts axis does not show properly values when numbers are so small
- Highcharts Pie chart: how to hide the legend for all but the three highest values
- How to let x axis title still show on the bottom when setting fontsize attribute in Highcharts
- how to hide highchart x - axis data values
More Query from same tag
- Highchart, I want to fill between some values(point to point). in areaspline chart
- angular2-highcharts click on point, open user input, display user input in annotation
- Highchart is not loading
- Highcharts: Stacking a column inside of another column
- How to change color of lable (name) in a highcharts series?
- Symfony2 highcharts, change color
- Highcharts Dynamic different time calculate
- In the following code i want to show the WHOLE names on x axis nd dont want them to overlap with the legend
- Cannot send Highcharts to back (z-index) of page
- splitSeries error with packedbubble in Angular
- Time-Date and Event chart or Graph in Highchart
- Highcharts border curve inside
- Dynamically add an event to Highcharts series
- Start graph rendering after left sided labels in Highstock
- highcharts large heat map drilldwon
- How do I extend the bars across the axis?
- dotnet Highcharts 3D Scatter Plot
- Add Source to Highcharts Export CSV
- Highcharts JS 'columnrange' chart value formatting
- angular2-highcharts first point loses on xAxis
- How to draw a bubble map with longitude and latitude using Highcharts in react
- HighCharts Errorbar with irregular time series interval
- How to show the json data in Pie chart HighChart?
- PHP JSON Highcharts load database result
- highcharts tooltip z-index
- how do you call function to pull data automaticall to chart in highcharts
- DataGrouping not working on highcharts angular
- Highcharts/Highstock: How to move the tooltip position to the center of a dataGroup
- Ember Js, Ember-Highcharts not updating changes to chartData
- Possible to set dataLabels to display xAxis data instead of yAxis data in HighCharts?