Hi,
I am binding the view model to chart like this,
<chart:XamWebChart.Series> <chart:Series ChartType="Column" DataSource="{Binding DataCollection}" DataMapping="Label=Label;Value=Value"> </chart:Series></chart:XamWebChart.Series>
The data is displayed properly and works fine. But I want to show tool tips when I mouse over on data points. If I create datapoints collection in code, I can specify tool tip, but when I bind how to specify tool tip for data point?
Please help
Hi, you should be able to set the tooltip in the datamapping also:
DataMapping="Label = Label; Value = Value; ToolTip = ToolTip"
-Graham