1
我使用的是winrt xaml工具包列表圖表,我想爲度數創建圖表,因此我需要爲列表中的每個名稱設置最小值和最大值,爲此找到一條途徑。這裏是我的代碼:如何在UWP圖表上設置兩值列
的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;
}
你不能做到這一點與'ColumnSeries'。完成此操作的_hackish_方法是使用帶有兩個'SeriesDefinition'的StackedColumnSeries',並將其中一個的顏色設置爲透明。 – jsanalytics