回复 10楼mingcedar的帖子
设置MajorUnit=5 ,搞定了!
AxisScrollBar的事件,试试类似这个代码:
- ((INotifyPropertyChanged)Chart.View.AxisY).PropertyChanged += (s, e) =>
- {
- if (e.PropertyName == "Scale")
- secondAxisY.Scale = Chart.View.AxisY.Scale;
- else if (e.PropertyName == "Value")
- secondAxisY.Value = Chart.View.AxisY.Value;
- };
复制代码
对了,刚出一篇blog:在 C1Chart for WPF下自绘ToolTips
希望能有借鉴意义。 |