我有以下图表:
<DVC:Chart x:Name="userChart" Title="Stats" Grid.Row="1" BorderThickness="0">
<DVC:Chart.Series>
<DVC:LineSeries Title="TEST"
ItemsSource="{Binding Path=UserChartList}"
DependentValueBinding="{Binding Path=Value}"
IndependentValueBinding="{Binding Path=Key}"
>
</DVC:LineSeries>
</DVC:Chart.Series>
</DVC:Chart>
如何将带状线(与 x 轴平行的线)添加到我的系列中。