Home
Releases
Discussions
Issue Tracker
Source Code
Stats
People
License
RSS RSS Feed
Search Wiki:
This is a library of WPF controls for dynamic data visualization. It features efficient binding mechanisms and real-time interactivity capable of charting millions of data points. Current release allows flexible drawing of line/marker plots.

DynamicDataDisplay controls can be used in your application in the same way as other WPF controls. Any data can be used as a source of coordinates on your chart. It can be an array, a DataTable or a function. Every change in the data source causes update of the chart. As an example, you can use this feature for monitoring running computations. Using mouse or keyboard you can zoom in deep into the graph to see its subtle details.

How to use DynamicDataDisplay library in your projects?


  1. Ensure that Microsoft .NET Framework version 3.5 is installed on your computer.
  2. Download latest release and extract DynamicDataDisplay.dll file in a folder of your choice.
  3. Reference the library in you project.
  4. Optionally add controls from the project onto Visual Studio toolbox panel and use them in WPF designers

Source code in the Samples folder will give you an idea how to come from data to an interactive chart in your application window.

How to build from source code?


  1. Download Main\src\DynamicDataDisplay subtree from source code repository
  2. Create DynamicDataDisplay.snk file to sign the assembly or disable assembly signing in the project file
  3. Build the project

Samples Gallery


  • HelloWorldSample shows how to plot basic line graph from two arrays. Title and axis text are declared in XAML.
HelloWorldSample.jpg
  • DataTableSample plots data from System.Data.DataTable object. Additional table rows named 'Index' and 'Sqrt' define marker color and size respectively.
DataTableSample.jpg
  • AnimatedSample display dynamically changing data. Values of Y coordinates are changed by timer event. This sample also features programmatic creation and update of plot title.
AnimatedSample.jpg
  • MarkersSample illustrates how to plot data using various line styles and different types of markers.
MarkersSample.jpg
  • TooltipSample adds textual description to each point of data. Mapping from numeric value to string is defined in sample's code.
TooltipSample.jpg
  • SimulationSample imitates rendering data from some simulation that constantly adds new data points.
SimulationSample.jpg
Last edited Jul 22 at 5:00 AM  by sberezin, version 14
Comments
Also available: 1 review for current release.

No comments yet.

Updating...