Skip to main content

All Questions

Tagged with
0 votes
1 answer
9k views

LiveCharts Line Graph style based on point value

I draw a bunch of line graphs using LiveCharts and WPF, where the contents and the number of line charts are determined at run time. So I don't know in advance how many LineSeries will be there, and ...
Sach's user avatar
  • 10.3k
1 vote
0 answers
247 views

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 ...
Johanna Witt's user avatar
0 votes
1 answer
6k views

Using Livecharts Constant Changes example to plot points based on time, and readings from a serial port?

Okay, so basically I am wanting to make this graph to replace DateTime and plot the X axis based on a stop watch. Then I want data coming from a serial port to plot the data on the Y Axis. This should ...
Hypergyzed's user avatar
0 votes
1 answer
150 views

How to display accumulated data in a line graph in wpf

I'm sure this is a beginner question but somehow I fail to come up with a solution. I've got a database table which is mapped to a MVVM which among other columns has two named 'DTS' and 'Movement'. ...
lichtbringer's user avatar
1 vote
0 answers
752 views

C# Dynamic Data Display InjectedPlotter multiple Y Axes

I have defined a ChartPlotter and an InjectedChartPlotter. The first one for displaying voltage data and the second one for displaying current data. This data is measured dynamically. My two types of ...
JoE's user avatar
  • 43
2 votes
1 answer
5k views

C# dynamic data display - update LineGraph

In my XAML file, I create a ChartPlotter then I create in c# my LineGraphs and attatch them to my ChartPlotter. I tried to find a way to update these LineGraphs after their creation, but it always ...
JoE's user avatar
  • 43
2 votes
2 answers
370 views

Setting Description property in XAML - ParseException

I use D3 DynamicDataDisplay for my chart needs but when I try to setup Legend description for LineGraph element it gives me error: The TypeConverter for "Description" does not support converting from ...
Joe's user avatar
  • 2,591
0 votes
1 answer
1k 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 ...
Nick Tsui's user avatar
  • 624
0 votes
1 answer
457 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 ...
Nick Tsui's user avatar
  • 624
1 vote
2 answers
2k 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 = plotter....
Nick Tsui's user avatar
  • 624
1 vote
1 answer
2k 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 (...
Nick Tsui's user avatar
  • 624