在过去的一周里,我阅读了很多材料并尝试了很多东西,但我对此一无所获。
我有一个主窗口MainWindowView
,其中包含如下定义的复选框:
<CheckBox IsChecked="{Binding Path=ocv_checkbox, Mode=TwoWay}" Margin="0, 0, 0, 2" Content="OCV"/>
<CheckBox IsChecked="{Binding Path=battery_temperature_checkbox, Mode=TwoWay}" Margin="0, 0, 0, 2" Content="Battery Temperture"/>
<CheckBox IsChecked="{Binding Path=slope_checkbox, Mode=TwoWay}" Margin="0, 0, 0, 2" Content="Slope"/>
根据选中的框,我想在用户单击 a 时在图表上绘制一条线Button
。我想要同一张图上的所有线条。
问题是,根据单击的框,我可能需要一个额外的轴来绘制。例如,如果我有 3 个复选框 1 2 和 3。数字 1 和 2 的单位为英寸,复选框 3 的单位为加仑。如果选中所有 3 个,我将需要左侧(或右侧)的英寸垂直轴和右侧的加仑轴(绘制 3)。
如何使用 D3 以编程方式执行此操作?根本没有太多文档,我需要在网上看到一个明确的答案。
目前我有:
<d3:ChartPlotter Name="plotter" Margin="10,10,20,10">
<d3:ChartPlotter.HorizontalAxis>
<d3:HorizontalIntegerAxis Name="dateAxis"/>
</d3:ChartPlotter.HorizontalAxis>
<d3:ChartPlotter.VerticalAxis>
<d3:VerticalIntegerAxis Name="countAxis"/>
</d3:ChartPlotter.VerticalAxis>
<d3:Header FontFamily="Arial" Content="{Binding ElementName=ThisGraphWindowInstance, Path=title}"/>
<d3:VerticalAxisTitle FontFamily="Arial" Content="{Binding ElementName=ThisGraphWindowInstance, Path=yAxis}"/>
<d3:HorizontalAxisTitle FontFamily="Arial" Content="{Binding ElementName=ThisGraphWindowInstance, Path=xAxis}"/>
</d3:ChartPlotter>
在我GraphWindowView.xaml
显然只有 2 个轴。如果可能,我想使用后面的代码添加一个。
谢谢你,富