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
1
vote
0 answers

How can I make the D3 ChartPlotter fill the entire space allocated to the control?

I am using a D3 ChartPlotter in my WPF application. Unlike the default behaviour, I'd need the ChartPlotter to: Hide the Z & X Axis Resize / Scale the graph to fully fill the horizontal space allocated to the control (I don't want the margin that…
Saverio Terracciano
  • 3,885
  • 1
  • 30
  • 42
1
vote
0 answers

Best way to serve different sized ad units on different URLs through DFP?

I'm using custom keys in DFP to segment my website based on category. For some of these categories, I'd like to serve a 300x600 ad unit in the right-hand sidebar. For others, I'd like to stick with the 300x250 unit. (I'm assuming that when I serve…
1
vote
2 answers

How to make the X axis shared for 2 charts in WPF in D3?

I want to place 2 charts one under the another one. And I want them to have shared X axis. So when I move the upper chart the lower one moves too, the same for zoom. I found that it is implemented in Dynamic Data Display lib for Silverlight. And is…
Vasilii Ruzov
  • 554
  • 1
  • 10
  • 27
1
vote
3 answers

Changing and setting the Legend (LineGraph) Future of DynamicDataDisplay

I'm using this great library https://d3future.codeplex.com/ to plot some 2D graphs. In the old D3 I used to set the legend this way: graf = plotter.AddLineGraph(new CompositeDataSource(xSrc, plot), new Pen(brush, 4), …
Sturm
  • 3,968
  • 10
  • 48
  • 78
1
vote
2 answers

Dynamic Data Display Chart with legend checkbox (WPF)

I am trying to recreate the example called "Line Graph legend" under Miscellanous in the following link, http://research.microsoft.com/en-us/um/cambridge/projects/ddd/d3isdk/ I am using WPF not silverligth, and was having problems getting the…
guilhermecgs
  • 2,913
  • 11
  • 39
  • 69
1
vote
1 answer

DynamicDataDisplay chart horizontal string axis

I need to draw some charts using DynamicDataDisplay3. Everything works fine, except I can't find a way to change X axis to strings instead of dates or integers. This is how I tried to do it but I get only 1 value on X axis: int i = 0; …
ice 13
  • 333
  • 4
  • 17
1
vote
1 answer

Dynamic Data Display graph of variable number of rectangles

I'm trying to plot a user's input data that will eventually become a series of rectangles (different sizes and positions, not overlapping) in a graph. All examples I've read either only plot lines with a variable number of points or hard-code in the…
Ross Llewallyn
  • 66
  • 2
  • 11
1
vote
1 answer

Dynamic Data Display LineGraph Not Updating Correctly when using Binding

This Problem has been fixed. I have added the fixes to the code below, commented out sections are from the old code. Original Question: I am attempting to use a Dynamic Data Display LineGraph but am having trouble getting it to update (D3 Link:…
1
vote
1 answer

The calling thread cannot access this object because a different thread owns

I am using DynamicDataDisplay to to the plot. I got a error message: The calling thread cannot access this object because a different thread owns it when debugger hitting the following line: Action AddLineGraph = delegate() { …
Nick Tsui
  • 524
  • 2
  • 9
  • 29
1
vote
2 answers

DynamicDataDisplay D3:ChartPlotter zoom proplem

I'm using a simple ChartPlotter in my C# WPF application. When I zoom in/out by mouse scrolling, both Axis are changed. How can I control the zooming by mouse scrolling so it will affect only the X-Axis?
1
vote
1 answer

DynamicDataDisplay D3 fixed Axis

I'm using D3 to create several graphics side by side and I would like to have the scale of the axis to be the same and when it changes. I mean, on the following graphics, when I move with the mouse the Y axis of one graphic, I want the over graphics…
CeD
  • 13
  • 3
1
vote
2 answers

DynamicDataDisplay D3 LineGraph color change

plotter is a DynamicDataDisplay.ChatterPlot variable. It adds a couple lines like following: LineGraph lgChA = plotter.AddLineGraph(dsChA, Colors.Red, 1, "Data"); LineGraph lgChB = plotter.AddLineGraph(dsChB, Colors.Green, 1, "Data"); The graph…
Nick Tsui
  • 524
  • 2
  • 9
  • 29
1
vote
1 answer

DynamicDataDisplay Line Graph plotter with multiple data sources?

I am trying to plot multiple curves in different color on my graph. I am currently using one plotter (not sure if that will work, and that is why I am posting a thread here), and here is my code: if (_dataXChA != null && _dataXChA.Length > 1) { …
Nick Tsui
  • 524
  • 2
  • 9
  • 29
1
vote
2 answers

Legend outside the plot

do you know how can I put the Legend outside the plot area? (Both in code and in xaml) Thank you for your help! cis
cis
  • 93
  • 4
1
vote
1 answer

WPF Dynamic Data Display Line plot behaviour when the data is not valid

I'm working on a WPF application that displays range (distance) measurements in real time. I use the chart plotter to display a line graph and refresh this at around 10Hz. The Y-axis (distance) is fixed and the x-axis (data sample) is 'rolling'. My…
user1400716
  • 1,126
  • 5
  • 13
  • 32