我正在使用 WinRT XAML Toolkit 中的折线图。现在 myIndependentValueBinding
是从 1 到 5 的整数值完成的,但是当它显示时,它还显示浮动值,如 1.2、1.4、1.6 等....
那么如何才能在 X 轴上只显示 1、2、3、4 和 5。
我正在使用 WinRT XAML Toolkit 中的折线图。现在 myIndependentValueBinding
是从 1 到 5 的整数值完成的,但是当它显示时,它还显示浮动值,如 1.2、1.4、1.6 等....
那么如何才能在 X 轴上只显示 1、2、3、4 和 5。
UPDATE 1
If you add IndependentAxis
, then you will face clipping issue of data points, so here's solution for that.
How to set axis margin in WinRT XAML Toolkit line chart?
Finally I added this, and it worked.
((LineSeries)MyChart.Series[0]).IndependentAxis = new LinearAxis
{
Minimum = 1,
Maximum = 5,
Orientation = AxisOrientation.X,
Interval = 1
};
我不知道 WinRT XAML 工具包,但使用 Telerik RadChart 我刚刚解决了同样的问题,方法是将一个名为MajorStep
(控制轴的主要刻度线之间的值距离)的属性设置为合适的整数值。也许 WinRT XAML Toolkit 有类似的属性?