I am using a Scatter Line Chart to graph XY values from a data set. These XY points taken from the data set also have a date associated with them. My code pulls 2 points from the dataset and graphs them to show net XY movement over time. When a user hovers a data point on the graph to display the XY values, I would also like the tooltip to say what date (or essentially any 'Z' value) is associated with that point. This Z value is in the data set which I am graphing, but I do not know any way to clearly display the date information so the user knows the point's associated date. I tried adding a {2} to DataFormatString below, but obviously without a 3rd (DataFieldZ?) Specified, it has nothing to link to.
<telerik:RadHtmlChart runat="server" ID="SLCPositionalMultiDevice" Width="1100px" Height="650px" Visible="false"><PlotArea> <Series> <telerik:ScatterLineSeries Name="0" DataFieldX="x" DataFieldY="y"> <TooltipsAppearance Color="White" DataFormatString="{0}, {1}, {2}"></TooltipsAppearance> <LabelsAppearance Visible="false"> </LabelsAppearance> </telerik:ScatterLineSeries> </Series> <XAxis> <LabelsAppearance DataFormatString="{0}"></LabelsAppearance> <MajorGridLines Width="1"></MajorGridLines> <MinorGridLines Visible="false"></MinorGridLines> </XAxis> <YAxis > <LabelsAppearance DataFormatString="{0}mm"></LabelsAppearance> <MajorGridLines Width="1"></MajorGridLines> <MinorGridLines Visible="false"></MinorGridLines> </YAxis> </PlotArea></telerik:RadHtmlChart>