I'm using winrt xaml toolkit column chart and i want to create a chart for degrees so i need to set min and max values for every name on the list and I couldn't find a way for that. Here's my code:
Xaml:
<charting:Chart x:Name="chart" FlowDirection="RightToLeft" HorizontalAlignment="Center" Width="800" VerticalAlignment="Top" Height="500" >
<charting:ColumnSeries Title="month" IndependentValuePath="Name" DependentValuePath="Amount" IsSelectionEnabled="True"/>
</charting:Chart>
C#
private void LoadChart()
{
List<weather> list = new List<weather>();
list.Add(new weather() { Name = "s1", Amount = 5.5 });
(chart.Series[0] as ColumnSeries).ItemsSource = list;
}