File tree Expand file tree Collapse file tree 3 files changed +8
-2
lines changed
web/twa-vis-framework/library Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 22
33[ // ] : # ( Note that version headers need to start with "## " characters to be picked up by some automated scripts )
44
5+ ## 4.7.3
6+
7+ ### Bug Fixes
8+
9+ * Fixed instant time series not being displayed as time series on the chart
10+
511## 4.7.2
612
713### Bug Fixes
Original file line number Diff line number Diff line change 1- 4.7.2
1+ 4.7.3
Original file line number Diff line number Diff line change @@ -276,7 +276,7 @@ class TimeseriesHandler {
276276 // Determine axis types
277277 let yAxisType = ( "Boolean" === data [ "valuesClass" ] ) ? "category" : "linear" ;
278278 let xAxisType = "linear" ;
279- if ( data [ "timeClass" ] === "dateTime" || data [ "timeClass" ] === "offsetTime" ) {
279+ if ( data [ "timeClass" ] === "dateTime" || data [ "timeClass" ] === "offsetTime" || data [ "timeClass" ] === "Instant" ) {
280280 xAxisType = "time" ;
281281 }
282282
You can’t perform that action at this time.
0 commit comments