.net - Allowing zooming when point range is less than [-1,1] in DataVisualization.Charting? -


I have DataVisualization. To enable Charting.Chart and user controlled zooming, I

  chartArea1.CursorX.IsUserEnabled = true; ChartArea1.CursorX.IsUserSelectionEnabled = True; ChartArea1.CursorY.IsUserEnabled = True; ChartArea1.CursorIs.UsersConfirmed = correct; However, if I create a series in which there is an axis with the data range within [1,1], then zooming on that axis will not be allowed. Is there any way to enable zooming?  

In addition to this, the zooming selector looks quite trivial (it gets trapped in big gaps or some things) Is it possible to get this smooth selection?

cover both WPF and WinForms You have not specified in your question.

WPF

It seems that the chart is virtualizing the content (i.e. just portraying that scene) you may possibly verify it This is the case by setting ScrollViewer.CanContentScroll to False . You want to keep virtualizing because otherwise performance will suffer with large data sets. WinForms

Did you charts. WWFord property? Setting this property to true will reduce the chart's control or prevent its flickering, using a secondary buffer to redo its surface.

  • chart class)
  • control.wbford property ()

Comments

Popular posts from this blog

mysql - BLOB/TEXT column 'value' used in key specification without a key length -

c# - Using Vici cool Storage with monodroid -

python - referencing a variable in another function? -