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
10
votes
3 answers

Dynamic Data Display - WPF - Need to add text to canvas - C#

I am using the dynamic data display WPF chart. I have a requirement to display a label next to every point on the curves plotted on the chart. The exact functionality is as follows: Every curve has a an object that holds its data and a description…
Harsha
  • 661
  • 1
  • 8
  • 21
6
votes
0 answers

Efficient way to update Dynamic Data Display charts in WPF

I am currently creating a project which wil grab live data from a COM port for me and then display it for easy interpretation. Part of that is creating line graphs with Dynamic Data Display, which I want to happen live as well. I currently have a…
Heiko Rothe
  • 331
  • 3
  • 16
5
votes
3 answers

DynamicDataDisplay ChartPlotter remove all plots

In my WPF application I have a D3 ChartPlotter where I was able to plot 4 LineGraphs. This is the XAML code:
Cynical
  • 9,328
  • 1
  • 15
  • 30
4
votes
3 answers

Dynamic Data Display charting: change Y axis range

Does anyone know if is there any way to change the Y axis limits on a line chart from D3? I'm using the last version from Codeplex source... The WPF one, not the Silverlight version. I'm plotting readings from Android sensors and the range values…
rbasniak
  • 4,484
  • 11
  • 51
  • 100
4
votes
0 answers

bezier curve to draw area under the code with wpf dynamic data display

I have a program that creates a chart with dynamicdatadisplay. I need to fill the specified area under the curve (not the whole curve, just a part, for example if i have a sinus from 0 to 1 in x axis, just the area under the curve that corresponds…
cis
  • 93
  • 4
4
votes
1 answer

Dynamic Data Display Scattered DateTime Axis

I am trying to chart candlestick markers for a chart of stock prices. I have a marker for every minute of a trading day - 9:30 AM to 4:00 PM. I don't want to display empty space for 4:01 PM to 9:29 AM for each trading day. Is there a way I can…
Jason Higgins
  • 1,516
  • 1
  • 17
  • 37
3
votes
1 answer

Dynamic database table display using Jstl

I am trying to display database data using JSTL like this: My dao; public ArrayList getStudentFirstName(){ ArrayList v = new ArrayList(); Connection conn; try{ conn = db.getDbConnection(); String sql =…
Stanley Mungai
  • 4,044
  • 30
  • 100
  • 168
3
votes
2 answers

How to create a Custom Routed Event ? WPF c#

I followed this tutorial but I couldn't apply what I learned to my project. I have a LineGraph object (Dynamic Data Display) and I want to create an event that is raised when the thickness of the LineGraph is equal to 0. How am I supposed to write…
Jean Col
  • 522
  • 5
  • 16
3
votes
1 answer

C# WPF D3 (Dynamic Data Display) Charting Project

I'm trying to use D3. First i was downloaded last release and open it via VS2012. Without do any change i try to run test project and i receive strange error message at runtime, details are below. Hoe can i solve this…
Aytaç Aşan
  • 155
  • 13
3
votes
1 answer

How to highlight and label a specified point in wpf dynamic data display?

Do you know how to highlight a specified point in a graph? Is it also possible to show a label for this specified point? Any ideas?
cis
  • 93
  • 4
3
votes
2 answers

WPF DynamicDataDisplay - Slow plotting with Markers

I am having a really hard time waiting for the ChartPlotter in D3 to show itself, when using markers. Of course I am trying to plot a Gazillion records (well, 700,000 records). When using just a line, all is well (20 seconds or so). When using…
Gabe
  • 630
  • 1
  • 9
  • 25
3
votes
3 answers

Creating a WPF Tooltip on a Rect object

I'm working with an open source charting library that creates markers on a graph. (Dynamic Data Display) The markers that I'm creating are created with Rect objects. I noticed that all the Shapes in System.Windows.Shapes have a ToolTip property, but…
Jason Higgins
  • 1,516
  • 1
  • 17
  • 37
3
votes
3 answers

Dynamic Data Display : Change X-Axis date time format for graph

I am working on wpf application where I am using Dynamic Data Display to show Graph. It works fine. Problem : please check this : How can I use 12 hour time format instead of 24 hours? please suggest. UPDATE : This is my XAML for graph : …
Sunny
  • 3,185
  • 8
  • 34
  • 66
3
votes
2 answers

Enumeration has either not started or has already finished

I am working on a application everything works fine but i am getting exception Enumeration has either not started or has already finished. Here is my code which generate this exception. for (int i = 0; i < SelectedItems.Count; i++) …
Sunny
  • 3,185
  • 8
  • 34
  • 66
2
votes
1 answer

Dynamic Data Display Isoline white edges

I've got a graph that looks like this: And I want it to look like this: I've been using Dynamic Data Display's Isoline library for this. The issue is that in the upper-right corner, the area is colored, even though all values in that area are 0…
Breina
  • 538
  • 5
  • 20
1
2 3
9 10