1. If I change the type of the scale from automatic to fixed like this
if (chartScale.Properties.YAxisRangeType == YAxisRangeType.Automatic)
{
chartScale.Properties.FixedScaleMax = chartScale.MaxValue;
chartScale.Properties.FixedScaleMin = chartScale.MinValue;
chartScale.Properties.YAxisRangeType = YAxisRangeType.Fixed;
}
2. I have also tried to slide the fixed scale (similar to how it slides with a CTL-click in the scale. I do this by setting the FixedScaleMin/Max with offset values from mouse move events. This kind of works, but it is very jittery like one of the Min/Max sets is fighting the other one or there is some kind of rounding going on. How can this be accomplished in a smooth fashion? It seems like there needs to be a method to set both the Min/Max concurrently.

Comment