BoldSignA modern eSignature application with affordable pricing. Sign up today for unlimited document usage!
public void SwitchVisibleRight() { OppAxis.IsVisible = !OppAxis.IsVisible; OnPropertyChanged("OppAxis"); } public void SwitchRange() { OppAxis.Minimum = 0; if (OppAxis.Maximum == 5) OppAxis.Maximum = 10; else if (OppAxis.Maximum == 10) OppAxis.Maximum = 20; else OppAxis.Maximum = 5; OnPropertyChanged("OppAxis"); } |
The axis on the right does not change in any case, the same changes applied to the axis on the left are working properly.