This question is locked. New answers and comments are not allowed.
<
chart:SeriesMapping
>
<
chart:SeriesMapping.SeriesDefinition
>
<
chart:BarSeriesDefinition
ShowItemToolTips
=
"True"
/>
</
chart:SeriesMapping.SeriesDefinition
>
<
chart:SeriesMapping.ItemMappings
>
<
chart:ItemMapping
FieldName
=
"A"
DataPointMember
=
"YValue"
/>
<
chart:ItemMapping
FieldName
=
"B"
DataPointMember
=
"XCategory"
/>
</
chart:SeriesMapping.ItemMappings
>
</
chart:SeriesMapping
>
how do we add a tooltip to show data returned via Binding property on our charts from xaml code. For instance data returns columns A, B and C. A is bound to Y axis B is bound to X axis and C needs to be the tooltip on the bars.
Thanks.