microsoft / InteractiveDataDisplay.WPF

Interactive Data Display for WPF is a set of controls for adding interactive visualization of dynamic data to your application. It allows to create line graphs, bubble charts, heat maps and other complex 2D plots which are very common in scientific software. Interactive Data Display for WPF integrates well with Bing Maps control to show data on a geographic map in latitude/longitude coordinates. The controls can also be operated programmatically.
Other
968 stars 266 forks source link

DependentPlotter vertical axis range set to fixed value #23

Open SINOJ opened 6 years ago

SINOJ commented 6 years ago

How could i set vertical axis range to fixed value? Used dynamic data display

code is give below:

head5man commented 5 years ago

Maybe this code behind example will help. At least for me it was the plotter auto fit that prevented from fixing the ranges.

_ValvePlotter.IsAutoFitEnabled = false; inletlg.SetPlotRect(new DataRect(Xmin, Ymin, Xmax, Ymax));