score:2
You need to set your yAxis.type: 'datetime'
and you need to format your series.data
to be a valid time javascript time. Currently you have yAxis set to just be values (default) and your data is actually a string ("02:19:36" for example). This needs to be converted to a javascript time.
Edit - example of Date.UTC()
.
To convert your first entry for 'Michelle' use:
Date.UTC(0, 0, 0, 2, 19, 36)
Since you dont care about year/month/day but the function requires year and month I just set them to 0. Replace all your string dates such that your
data` looks like:
data: [Date.UTC(0, 0, 0, 2, 19, 36), Date.UTC(....), etc]
Here is an updated fiddle with just one set of data. Noticed I changed series type to 'line. The 'column' type was acting funny.
Fixed the 'column' type issue but setting arbitrary yAxis min year/month/day and setting the data points to use that same value so that the only difference is the time.
Source: stackoverflow.com
Related Query
- Hours: Mintues: Seconds in HighCharts Bargraph
- Displaying hours and minutes on x-axis with Highcharts
- Plotting seconds, minutes and hours on the yAxis with Highcharts
- Using PhantomJS to create HighCharts grahps server side for use in PDF creation (PHP) - results in exit code 11 from PHPs exec();
- Highcharts - Global configuration with common code and unique data & Headings
- Highcharts bargraph from json data in angularJS
- HighCharts Stock Chart error code 18
- highcharts change rendered image source on click
- How do i add mouse wheel code in Angular2 highcharts in typescript
- how to display 2 same highcharts without duplicate the code
- Use of DotNet HighCharts dll to make charts in code behind
- How to edit tooltip in Highcharts C# code
- what means ${demo.css} in example files of highcharts ? That piece of code seems to be literal
- passing json values to highcharts from .net code behind
- how to use highcharts tooltip formatter in python code
- passing formatting JavaScript code to HighCharts with JSON
- Highcharts - change seconds to time (H:M:S) in data labels
- Highcharts display label for pie chart using html table as data source
- Simple, Open source PHP wrapper for Highcharts library
- Add Source to Highcharts Export CSV
- Issue Converting Highcharts to 24 hours format
- Include additional highcharts source data in angular2 app
- Using hours and minutes as data in highcharts donut chart
- Conditions within highcharts code
- Strange character in the Highstock source code
- What's the code in Highcharts such that the bars (columns) in the same group use the same color?
- Highcharts series visibility with csv data source
- HTML table as data source for highstock charts using highcharts
- Including source for Alchemy js breaks Highcharts js
- Highcharts SVG Export from Python Server Side Code
More Query from same tag
- HighChart Bubble and Date / Tooltip
- Highcharts : Change spline chart color dynamically
- How to add multiple series dynamically and update its data dynamically
- Wrong x-axis position and formatting when only 1 data series sent to chart
- HighCharts line series not displaying properly with stacked bar combo chart
- Implementing Custom Temperature Gauge with Angular 4 and HighCharts
- my highchart is currently is not working with pie spline chart in updating after rendering chart
- Fixed x-axis in Highcharts Stock (stop auto-scaling)
- Error when using Highcharts with Angular 2
- HighCharts zoom in selection event
- How to overcome with conflicting jQuery files
- Is angular2-highcharts supported in Angular 11?
- highcharts pie apply a modal for each section
- Customise Highstock tooltip conditionally
- Tooltip to display middle points in a series in highcharts
- SVG javascript chart scraping
- How to get the array format to function on x axis labels?
- Get nearest all Y values on click of anywhere of linechart using highchart
- Tooltip covering bar in highchart
- Trying to provide a list of symbols (per series) for Highcharts line graph in iReport
- R Highcharter: dynamic drilldown in Shiny on the fly
- highcharts how to load data via ajax
- How to display basic line graph in Highchart for multiple categories' data from csv?
- Highcharts distorsion
- Download an image using axios post request
- highchart - display value in xaxis as the value I get from the chart data as is without conversion
- I'm trying to have a hide series button on my highchart but it makes the chart disappear
- Dynamically populated highcharts data and database storing
- How to use HighCharts dart library in Flutter app?
- Highcharts Line Chart - Some categories are not visible