我正在创建一个应用程序,我想在其中绘制一个图表,其中 DateTime 作为 X 轴,0-100 的数字作为 Y 轴。
我使用了以下代码
<d3:ChartPlotter.HorizontalAxis>
<d3:HorizontalDateTimeAxis Name="dateAxis"/>
</d3:ChartPlotter.HorizontalAxis>
<d3:ChartPlotter.VerticalAxis>
<d3:VerticalIntegerAxis Name="countAxis" />
</d3:ChartPlotter.VerticalAxis>
<d3:Header FontFamily="Times New Roman" Foreground="SteelBlue" Content="Radiation Monitoring System"/>
<d3:VerticalAxis FontFamily="Times New Roman" Foreground="SteelBlue" Content="Radiation Number" HorizontalAlignment="Center" VerticalAlignment="Top" Height="346" Width="179" />
<d3:HorizontalAxis FontFamily="Times New Roman" Foreground="SteelBlue" Content="Real time" HorizontalAlignment="Center" />
</d3:ChartPlotter>
我如何将 Y 轴值设置在 0 - 100 之间?
我还需要设置 Y 轴的内容,就像我们在正常图中看到的那样。(旋转 270 度)