Hi to all,
i am using the DataChart quite a while, ist pretty cool.
But i have 2 issues/questions, which i cannot solve.
I am using 16.1 at this time
1) For the LineSeries i can set a Brush (Color), but i would like to be able to draw the series dashed or dotted. Does the Chart Support this? How would i do that?
2) Within the Chart one can use the mouse Wheel for zooming. Can i tell the Chart to do other (custom) Things wioth the mouse Wheel (e.g. moving a value overlay) ?
Thanks in advance
Thomas
Hello Thomas,
Please find bellow answers to your questions:
private void UltraDataChart1_MouseWheel(object sender, MouseEventArgs e){ this.overlay.Value += e.Delta / Math.Abs(e.Delta);}
Please let us know if any additional questions on this matter arise.