1

http://dynamicdatadisplay.codeplex.com/

如何在代码中设置 Chartplotter 轴标题?

plotterTotal.HorizontalAxis = new HorizontalDateTimeAxis() { Name = "dateAxis" };
                        plotterTotal.VerticalAxis = new VerticalIntegerAxis() { Name =         "powerAxis" };

此 xaml 的模拟

 //<d3:Header  Content="Counter power"/>
                        //<d3:VerticalAxisTitle Content="Power" Name="valueAxis"/>
                        //<d3:HorizontalAxisTitle Content="Date"/>
4

2 回答 2

0

旧帖子,但嘿...... https://dynamicdatadisplay.codeplex.com/discussions/219647

基本上,如果您在 xaml 中设置了 Chart Plotter,则为图表设置标题并为其提供 Name 属性。

然后在您的代码中,引用该属性并设置其内容。

于 2014-11-02T07:16:55.767 回答
0

试试这个,它对我有用。

HorizontalAxisTitle horizontalAxisTitle = new HorizontalAxisTitle();
horizontalAxisTitle.Content = "abc";

VerticalAxisTitle verticalAxisTitle = new VerticalAxisTitle();
verticalAxisTitle.Content = "def";

plotterTotal.Children.Add(horizontalAxisTitle );
plotterTotal.Children.Add(verticalAxisTitle  );
于 2020-07-04T03:10:48.660 回答