我已经定义了 ChartPlotter 和 InjectedChartPlotter 。第一个用于显示电压数据,第二个用于显示当前数据。该数据是动态测量的。我的两种数据类型只能共享X轴(时间轴)。但现在,他们共享所有轴(X和Y)。我想为每种类型的数据定义特定的Y轴。我怎么能这样做?
我的ChartPlotter和我的InjectedChartPloatter:
<d3:ChartPlotter x:Name="graphUI" Margin="10,140,10,130">
<d3:InjectedPlotter Name="injGraphUI" >
<d3:Header Content="Battery data"/>
<d3:VerticalAxisTitle Content="Voltage"/>
<d3:HorizontalAxisTitle Content="Time"/>
</d3:InjectedPlotter>
</d3:ChartPlotter>
我使用 ObservableDataSource 对象来创建和更新我的 LineGraphs