Hey all.
I have a stored procedure that returns two columns: [dates] and [total]. I have bound a RadHtmlChart to this data as a Line Series. Currently, my tooltip is showing the [Total] properly, however I'd also like it to display the date.
Doing #=dataItem.dates# returns something along the lines of "Mon Aug 27 2016 12:00:000 Eastern Standard Time", which I would desperately need formatted. I'd prefer "08/29/16" and have tried to achieve it using the following:
#= kendo.format(\'{0:MM/dd/yy}\', dates) #
but this results in the tooltips not working at all, which I assume is indicative of a syntax error. Can anyone assist?
<telerik:RadHtmlChart runat="server" ID="RadHtmlChart1" Layout="stock" DataSourceID="report"> <PlotArea> <Series> <telerik:LineSeries DataFieldY="Total" Name="Combined Total"> <LineAppearance LineStyle="Smooth" /> <LabelsAppearance Visible="false"></LabelsAppearance> <TooltipsAppearance> <ClientTemplate> <strong>Combined: </strong>#=dataItem.Total# </ClientTemplate> </TooltipsAppearance> </telerik:LineSeries> </Series> <XAxis DataLabelsField="dates" Type="Date" BaseUnit="days" BaseUnitStep="1" EnableBaseUnitStepAuto="true"> <TitleAppearance Text="Date"></TitleAppearance> <MajorGridLines Visible="true" /> <MinorGridLines Visible="false" /> </XAxis> <YAxis> <TitleAppearance Text="Declines"></TitleAppearance> <LabelsAppearance DataFormatString="{0}"> </LabelsAppearance> </YAxis> </PlotArea> </telerik:RadHtmlChart>