I'm using XYPlot with xType={'time'}
and Russian locale as described in documentation, is there a way to pass 24h time format to d3-scale?
Instead of "03 AM" I need something like "03:00".
Russian locale from d3-time-format has time defined as %H, which should be 24 hours :
{
"dateTime": "%A, %e %B %Y г. %X",
"date": "%d.%m.%Y",
"time": "%H:%M:%S",
"periods": ["AM", "PM"],
// ... some other options
}
Unfortunately the setting doesn't affect scale behaviour.