You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current %H results in 01-24 output which looks surprising for the horizontal axis:
What I want is to represent "time since the beginning", so I would expect 00 to be formatted as 00 rather than 24.
Unfortunately, 0->24 conversion is hardcoded in
val data =mapOf(
"time" to doubleArrayOf(0.0, 90*60*1000.0, 2*90*60*1000.0) ,
"rate" to doubleArrayOf(0.0, 50.0, 250.0)
)
val plot = letsPlot(data) + geomLine { x ="time"; y ="rate" } +
scaleXDateTime("Time", expand =listOf(0, 0), format ="%Hh %Mm")
The text was updated successfully, but these errors were encountered:
The current
%H
results in01-24
output which looks surprising for the horizontal axis:What I want is to represent "time since the beginning", so I would expect
00
to be formatted as00
rather than24
.Unfortunately,
0->24
conversion is hardcoded inlets-plot/base-portable/src/commonMain/kotlin/jetbrains/datalore/base/dateFormat/DateTimeFormat.kt
Lines 111 to 115 in def7c2d
The data is
The text was updated successfully, but these errors were encountered: