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

Binding #16

Open Enxyphered opened 6 years ago

Enxyphered commented 6 years ago

Will binding work on linegraph. I tried binding the property "Points" of the type "LineGraph" to an observablecollection which didn't work.

sandlands commented 3 years ago

This might be due to the fact that System.Windows.Point is a struct and not a reference object. You could try to create your own Point class with X and Y properties and try to bind a collection of these.