Questions tagged [dynamic-data-display]

Interactive Data Display for WPF (previously Dynamic Data Display) 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 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.

Source: Interactive Data Display homepage

The first place to get information before asking a question here, would be to check the issues on the InteractiveDataDisplay.WPF GitHub project.

145 questions
2
votes
2 answers

Locating an element on hover - WPF - C# - Dynamic Data Display

In Dynamic Data Display, there is a class called MarkerPointsGraph. This derives from FrameWorkElement (through a series of other classes along the way, the most immediate parent being PointsGraphBase) and overrides the OnRenderMethod to draw a set…
Harsha
  • 661
  • 1
  • 8
  • 21
2
votes
2 answers

WPF DynamicDataDisplay - Putting strings in Y Axis instead of numbers

Using WPF (not Silverlight) D3, is it possible to put strings on the Y axis? I am specifically talking about a situation in which I have a graph of a timeline with status values (let's say "High" and "Medium" and "Low" mapped as 1, 0 and -1) and…
Gabe
  • 630
  • 1
  • 9
  • 25
2
votes
1 answer

D3 - Dynamic Data Display WPF datetime axis internal format

I am using a Dynamic Data Display WPF chart. I am trying to set the visible datarect for the Viewport2D in a chart with a datetime axis for x- axis. How do I convert a date into a valid double value for the DataRect which I need to assign to the…
Harsha
  • 661
  • 1
  • 8
  • 21
1
vote
1 answer

Implementing Step Line Chart in Dynamic Data Display

I would like to have a step line chart like this one, using D3 I think it is not available in D3. I guess I will have to code it as an add-in. However I really do not know where to start from, so any help is welcome.
Mehdi LAMRANI
  • 11,289
  • 14
  • 88
  • 130
1
vote
2 answers

Interrupted line/error mark in Dynamic Data Display Chart

I'm using Dynamic Data Display, for line chart (in WPF). I would like to interrupt the line, and display some "Error" label in that point (or on the X axis). Can somebody help me ? Thank you.
Ionica
  • 139
  • 3
  • 13
1
vote
0 answers

Changing the Line Style in an Interactive Data Display Multi-Chart in WPF with Visual C#

I've been through the forums for a few days, and I'm afraid I still haven't found an answer. So please excuse me if it's already somewhere else. And please tell me where you found it? But I'm writing a GUI for my Master's thesis that needs to…
1
vote
0 answers

Line graph automatically connects with other collection in DynamicDataDisplay WPF MVVM

In my project, i have to display multiple line graphs dynamically. If i bind more than one dynamic collection to my D3 line graph, every collection end point gets automatically connects with next collection first point. Please help me to…
Bala
  • 11
  • 1
1
vote
1 answer

Binding points to chart from Interactive Data Display WPF library

I want plot oscilloscope -like dynamic line chart in WPF and I found this library: Interactive Data Display which emerged from this library: D3 Dynamic Data Display. The advantage is that its light which is important for me. From sample program, I…
Sam Hicks
  • 31
  • 1
  • 7
1
vote
0 answers

Aspect ratio in Live-Charts

I've been using for a while the "dynamic-data-display" library, but there are not many examples and some things are a bit difficult to accomplish. I've found the "Live charts" library and I really like its simplicity. What happens is that there is…
Chux
  • 1,196
  • 1
  • 9
  • 24
1
vote
0 answers

Dynamic Data Display more than one lines in one chart for WPF application

I am receiving some data and I would like to represent it in a graph view using dynamic data display. All what I could do until now is create one line in the chart which is working fine. Now I would like to create more detailed charts which is…
thug_
  • 893
  • 2
  • 11
  • 31
1
vote
1 answer

How to add mutiple graph in one x-y plane in wpf using DynamicDataDisplay

I have to create more than one graph like this http://prntscr.com/dfn836 (We have 4 graph in one plane in different colors) using WPF. I have got DynamicDataDisplaySample which displays only one sinusoidal graph but my situation is i have to…
user3085082
  • 133
  • 4
  • 16
1
vote
0 answers

Performance degrade when plotting animated graph

I plot animated graph with Dynamic Data Display - graph that has source with constantly adding new points (about 10 times per second and 10 points per time). The problem is the performance degrade if these points form line segments which are big in…
Alex34758
  • 396
  • 4
  • 14
1
vote
2 answers

DynamicDataDisplay and other charting libraries for WPF apps

I am looking for a feature rich charting library, I've seen infragistics but it is not performant enough when there are many data points rendered, on the other hand I see DynamicDataDisplay is a pretty awesome library, but the project is not…
Rohit Sharma
  • 6,136
  • 3
  • 28
  • 47
1
vote
4 answers

DynamicDataDisplay error AddLineGraph not in Chartplotter

I have been using the version of D3 available in http://d3future.codeplex.com/ It has been working well with stock charts but gives an error at AddLineGraph. The code below comes from other web posts. It appears that some versions of…
1
vote
2 answers

Show table depending on json response

I have a json data with arrays of parameters like Sales, Tax etc. On click of a particular parameter from one page, the landing page should show the table for that particular parameter. { "Sales": [ { "Date": "2015-08-01…
Vinit Desai
  • 520
  • 1
  • 4
  • 20
1 2
3
9 10