Hello,
I noticed that the date format from my current kendo culture (fr-FR) is not applied properly for Weeks and Days units on xAxis labels of a chart with date axis.
I had to set the property DateFormats for Weeks and Days of my XAxis Labels to force the format (other units work fine) :
@(Html.Kendo.Chart(Of Models.DataViewModel).
Name("chart").
Title(typeMesure.GetDescription()).
DataSource(Sub(dataSource)
dataSource.Read(Sub(read)
read.Type(HttpVerbs.Get).Action("GetData","Data"))
End Sub).
Sort(Sub(sort) sort.Add(Function(m) m.Dt).Ascending())
End Sub).
Series(Sub(series) series.
ScatterLine(Function(m) m.Dt, Function(m) m.Value).
Markers(False).
MissingValues(ChartScatterLineMissingValues.Gap).
Color("#cb1d39").
Tooltip(Sub(tooltip)
tooltip.Visible(True).
Template("Date : #= kendo.toString(value.x, 'dd/MM/yyyy HH:mm') # <br/>Valeur : #= kendo.toString(value.y, 'n3') #")
End Sub)).
XAxis(Sub(xAxis) xAxis.Date().
Min(Model.DateDebut).
Max(Model.DateFin).
Labels(Sub(labels) labels.DateFormats(Sub(dateFormats) dateFormats.Weeks("dd/MM").Days("dd/MM")))).
Panes(Sub(panes) panes.Add().Clip(False)).
Pannable(True).
Zoomable(Sub(zoomable)
zoomable.Mousewheel(Sub(mousewheel) mousewheel.Lock(ChartAxisLock.Y)).
Selection(Sub(selection) selection.Lock(ChartAxisLock.Y))
End Sub))
Could you please fix this issue in a future version ?
Thanks and regards.