回复 6楼catvi的帖子
catvi 你好,
问题我已经了解了。使用同一方法设置条形图可以正常指定对应的Y轴,例如:
- // first series along the main y-axis
- DataSeries ds1 = new DataSeries()
- {
- ValuesSource = new double[] { 0.1, 0.5 }
- };
- chart.Data.Children.Add(ds1);
- // add new y-axis at the right
- chart.View.Axes.Add(new Axis()
- {
- Name = "ay2″,
- Position = AxisPosition.Far,
- AxisType = AxisType.Y,
- Min = 0
- });
- // second serie
- DataSeries ds2 = new DataSeries()
- {
- AxisY = "ay2″, // set axis for the series
- ValuesSource = new double[] { 100000, 150000 },
- };
- chart.Data.Children.Add(ds2);
复制代码
但是在 StackColumn中没启作用。
我会把问题反馈给产品组,看是否有办法解决。
由于时差等问题影响,问题预期会在2~3个工作日之内有反馈。 |