Dynamic Data Display a set of WPF controls for adding interactive visualization of dynamic data to a WPF or Silverlight application. It allows to create line graphs, bubble charts, heat maps and other complex 2D plots which are very common in scientific software.

learn more… | top users | synonyms

0
votes
0answers
8 views

How to hide label in IsolineGraph (of DynamicDataDisplay library)

I use isolineGraph provided by DynamicDataDisplay. By default the graph shows number on every contour. As I have many contours in my graph, my graph is filled with black color numbers. Is there any ...
0
votes
1answer
81 views

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 ...
0
votes
0answers
69 views

How to style ChartPlotter Axis (Dynamic Data Display)

I am using a dynamic data display chart plotter in a WPF MVVM application. I am trying to style it using some resources, but it is not working at all. It looks like the resource is completely ignored, ...
1
vote
1answer
97 views

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 ...
1
vote
1answer
275 views

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 ...
1
vote
1answer
175 views

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 ...
1
vote
1answer
84 views

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 ...
0
votes
1answer
56 views

D3 plotter and file watcher, interference?

I am using file watcher monitoring the file output, and then dynamically display the results using d3 (dynamic data display). Here is more details: Data are series of tiff file generated one by one ...
1
vote
0answers
129 views

WPF C# DynamicDataDisplay - Changing the DateTimeAxis Color

I'd like to know how could I change the color of the date time axis of my d3 chartplotter. http://hpics.li/b96b8ff The color that I want to change is the brown color and the white background color ...
0
votes
1answer
56 views

LineAndMarker<MarkerPointsGraph> only see markers, but no lines?

I am trying to plot data represented by a bunch of dots connected with lines. However, when I do the plot, I can only see dots being displayed, but I cannot see any lines. I don't know what the ...
-2
votes
1answer
351 views

How do I plot real-time signal in WPF and C# .net 3.5?

I am trying plot real-time signal, signal vs time, with WPF and C# (Dynamic Data Display); Once a signal is generated, it should be showed up on a plot chart instantly; The signal can be generated ...
0
votes
1answer
86 views

LineAndMarker<MarkerPointsGraph> has DataSource?

I am using DynamicDataDisplay to plot my real-time signal. I would like to have both markers and lines showing up on my chart, so I think I should use LineAndMarker<MarkerPointsGraph>; When x-y ...
0
votes
1answer
96 views

How to use UIElement[] CreateLabels method in NumericLabelProviderBase class to insert label or text in a point inside plotter

I'm tring to override CreateLabels to insert labels or text in specific points in plotter chart but I need a help in: 1. what does the parameter (ITicksInfo ticksInfo) mean and what should i send to ...
1
vote
1answer
171 views

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 ...
1
vote
1answer
118 views

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 ...
1
vote
2answers
198 views

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 = ...
0
votes
1answer
244 views

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 ...
1
vote
1answer
308 views

Dynamic-Data-Display / Getting x-coordinate of user input

My program is basically about analyzing videos. A major part is to plot a diagram showing (f.e.) brightness per frame on y-axis and every frame number on x-axis. Because the program is written in C# ...
3
votes
1answer
388 views

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 ...
1
vote
1answer
87 views

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
1
vote
1answer
207 views

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 ...
1
vote
1answer
101 views

Draggable Point

I am working with a chart in wpf with dynamic data display. I would like to insert a dynamic draggable point. Until now I can just insert one like this <d3:DraggablePoint Position="0.2,0.2" /> ...
1
vote
1answer
265 views

DynamicDataDisplay ChartPlotter scroll horizontal axis

I am still pretty rough on this library given the lack of documentation. I have a ChartPlotter object which is showing data in real-time as it's captured through capture of data from a device. I have ...
2
votes
1answer
204 views

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?
2
votes
0answers
186 views

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, ...
2
votes
2answers
488 views

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 ...
3
votes
2answers
865 views

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, ...
1
vote
3answers
839 views

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 ...
1
vote
1answer
352 views

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 ...
1
vote
1answer
256 views

WPF DynamicDataDisplay version problems with hiding the legend and using logarithmic scale

I am using Microsoft's D3 with WPF (not silverlight). I am desperately looking for a version of D3 that would allow ,me to hide the legend. I found several examples online, using older versions of D3. ...
3
votes
1answer
664 views

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: <d3:ChartPlotter Name="plotter"> <d3:ChartPlotter.HorizontalAxis> ...
2
votes
3answers
503 views

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 ...
3
votes
1answer
639 views

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 ...
1
vote
1answer
481 views

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 ...
1
vote
1answer
274 views

Line disappearing on zooming (using “Dynamic data display”)

In my WPF-project I'm using Dynamic data display for charting. I read somewhere that it's a common bug that lines disappear (are not drawn) if you zoom in very deeply. Has anybody a solution for this ...
1
vote
1answer
668 views

Set range for values for graph axes using DynamicDataDisplay

I am creating a application where in I want to plot a graph with DateTime as X-axis and numbers from 0-100 as Y-axis. I have used the following code <d3:ChartPlotter.HorizontalAxis> ...
1
vote
1answer
156 views

Is it possible to have independent multiple axes in WPF graphs?

Having independent multiple axes for each series in scientific graphs is very common condition. The requirement is, The graph can have more than one series. and each series is associated with ...
1
vote
0answers
283 views

WPF UserControl RealTime refresh

I have used D3 (Dynamic Data Display) to create a chart windows that displays a live-updating line chart. I am trying to embed this into WPF MDI I had to change my chart window type from "Window" to ...
1
vote
1answer
467 views

C# D3 (Dynamic Data Display) Charting Project

Anybody knows why Dynamic Data Display is not maintained anymore ? D3 is an awesome piece of open source work for c# charting with robust abilities (handles very large datasets & smart data ...
2
votes
3answers
3k views

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 ...
0
votes
1answer
277 views

How can I hide the X-Axis in D3 (DynamicDataDisplay) Plotter?

I would like to be able to hide the X-Axis (Labels, Ticks, etc) in the ChartPlotter of D3 (DynamicDataDisplay). The amount of documentation available for D3 is basically non-existent. Any help would ...
1
vote
2answers
960 views

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 ...
1
vote
1answer
428 views

WPF D3 Dynamic Data Display Multiple axes

I have a Dynamic Data Display chart. I am using ChartPlotter. It has a default X and Y Axis. I need to add an extra X axis and two more Y axes. How can I achieve this in XAML and dynamically in code? ...
0
votes
1answer
641 views

How to bind large amount of data in chart plotter control of D3 [closed]

i am working on a WCF application which is used to show real time sensor info which coming from database.For this i am using DynamicDataDisplay chart plotter.It works fine here for small amount of ...
1
vote
2answers
436 views

Add vertical scroll in legend box (ChartPlotter) WPF

I am new for WPF application.I am working on a Sensor reading WPF application.In this application i have to select sensors out of 170 Sensors.After selecting sensors when i click on view report then ...
2
votes
1answer
3k views

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 ...
1
vote
1answer
688 views

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 ...
1
vote
1answer
514 views

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 ...
2
votes
1answer
234 views

Integrating WPF forms and normal C# forms

For a project I decided to use Dynamic Data Display to generate charts (more specifically: heat maps) of certain data. Now for as far as I could read (and see from the demos) Dynamic Data Display ...
-1
votes
3answers
1k views

refresh WPF D3 Dynamic Data display Chart

I databind the LineGraph with a datasource when new points comes from backend, the problem is that the grid isnt refreshed, you can do a plotter.FitToView() to get it to refresh but that also fits the ...

1 2