Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
285
Is there any way to get the actual value on the bar
posted

Hi,

Is there any way to get the actual value on the bar or just next to the bar .

Here is my xaml

<ig:XamDataChart x:Name="DataChart"
DataContext="{Binding TestData}">

<ig:SyncManager.SyncSettings>
<ig:SyncSettings SyncChannel="syncDynamicCharts"
SynchronizeHorizontally="True"
SynchronizeVertically="False" />
</ig:SyncManager.SyncSettings>

<ig:XamDataChart.Axes>
<ig:CategoryXAxis x:Name="xmXAxis"
ItemsSource="{Binding}"
Label="{}{Value}">
<ig:CategoryXAxis.LabelSettings>
<ig:AxisLabelSettings Extent="25"
Location="InsideLeft"
Visibility="Visible" />
</ig:CategoryXAxis.LabelSettings>
</ig:CategoryXAxis>
<ig:NumericYAxis x:Name="xmYAxis">
<ig:NumericYAxis.LabelSettings>
<ig:AxisLabelSettings Extent="55"
Location="InsideTop"
Visibility="Visible" />
</ig:NumericYAxis.LabelSettings>
</ig:NumericYAxis>
</ig:XamDataChart.Axes>

<ig:XamDataChart.Series>
<ig:ColumnSeries ItemsSource="{Binding}"
ValueMemberPath="Key" EndCap="Round" ToolTip="{}{Key}"
XAxis="{Binding ElementName=xmXAxis}"
YAxis="{Binding ElementName=xmYAxis}" />

</ig:XamDataChart.Series>