Skip to content

Instantly share code, notes, and snippets.

@lohithgn
Last active December 18, 2015 21:19
Show Gist options
  • Save lohithgn/5846257 to your computer and use it in GitHub Desktop.
Save lohithgn/5846257 to your computer and use it in GitHub Desktop.
Caretesian Chart XAML Code
<telerik:RadCartesianChart Grid.Row="1" x:Name="chartView" Palette="Metro">
<telerik:RadCartesianChart.VerticalAxis>
<telerik:LinearAxis Title="Price (USD)"/>
</telerik:RadCartesianChart.VerticalAxis>
<telerik:RadCartesianChart.HorizontalAxis>
<telerik:CategoricalAxis Title="Products"/>
</telerik:RadCartesianChart.HorizontalAxis>
<telerik:RadCartesianChart.Series>
<telerik:BarSeries x:Name="barSeries1" ItemsSource="{Binding}"
ValueBinding="Price"
CategoryBinding="ProductName"
ShowLabels="True" />
</telerik:RadCartesianChart.Series>
</telerik:RadCartesianChart>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment