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
0
votes
0 answers

Converting string to UIElement

Is there a way to convert string to UIElement? I'm trying to add text to my graph's legend using an Interactive data display. The legend needs to not correlate with a plotted graph so I'm making my own like so: LegendItemsPanel legendItemsPanel =…
0
votes
4 answers

Showing 1 to 10 of 35 entries not working in laravel

I'm working with laravel 5.6 showing data, but it's not working perfectly. This code displayed me in fist page Showing 0 to 10 of 35 and last page displayed Showing 30 to 40 of 35 $page = $request->has('page') ? $request->get('page') : 1; $total…
Mahbub
  • 49
  • 1
  • 1
  • 11
0
votes
1 answer

Interactive Data display in c#

I have some csv files that I try to read and then divide them in two columns or list and plot them in a mathematical chart. The csv files contains two columns, one for voltage and one for time. I read the csv files and use Interactive Data…
Payam30
  • 689
  • 1
  • 5
  • 20
0
votes
2 answers

Shiny leaflet doesn't work properly with dynamic menu

I have been struggling with this issue for some time, without success. I want to build a shiny interactive app with table and map. It combines different data sets. The idea is to be able to choose a required data set and to filter data within this…
MikolajM
  • 354
  • 1
  • 8
0
votes
3 answers

InteractiveDataDisplay.WPF making dynamically chart as values recorder appearance

I've using Microsoft InteractiveDataDisplay.WPF (former DynamicDataDisplay) to visualize real time data (about 2-3 seconds). This code xaml.cs: public partial class MainWindow : Window { public MainWindow() { …
amaranth
  • 979
  • 2
  • 22
  • 40
0
votes
1 answer

Display Chartplotter using MVVM with CompositeDataSource

I followed this link to bind data to view .But I am unable to display results using CompositeDataSource uisng MVVM. pixelX = new double[grayScaleData.Length]; grayLevelY = new double[grayScaleData.Length]; for (int i = 0; i < grayScaleData.Length;…
Ratzz
  • 15
  • 6
0
votes
1 answer

Unable to bind the WPF ChartPlotter to the View using MVVM

I just followed this to create a simple Chart Plotter using MVVM. But I am unable to bind the data-source Output image. XAML
Ratzz
  • 15
  • 6
0
votes
1 answer

Dynamic-Data-Display WPF Changing the ChartPlotter's default behaviour to moving instead of scaling

I have some data that comes via messages to my chart. It's a electric current over time (seconds) chart. How can I change the behaviour of the FitToView mode (or write a different one) so that the plotter doesn't zoom out and scale to fit the whole…
0
votes
2 answers

Dynamic-Data-Display multiple axes scaling

I have a MVVM wpf application with a chartplotter. I have 2 vertical axis and 2 graphs (for example current and voltage over time on one chart).
0
votes
2 answers

binding chart plotter using mvvm

I am trying to make graphs using dynamic data display. I am using MVVM. My senderviewmodel code is the following voltagePointCollection = new VoltagePointCollection(); updateCollectionTimer = new DispatcherTimer(); …
0
votes
1 answer

ASP.NET Design View - Moving Controls

I've recently decided to create a web app to host some algorithms - I normally just create them without care for UI. However this time I need to dive deep into UI. I'm familiar with bootstrap, css, asp.net and have made a good start. I'm finding it…
0
votes
0 answers

What is the optimal way to display images fast (C#)

I am trying to create an application to display 8/16bit grayscale video. Currently, I create a BMP bitmap as RGB48 from frames, and simply assign pictureBox.Image = bmp This requires to create three redundant channels to make an RGB image look like…
Nazar
  • 820
  • 5
  • 13
  • 36
0
votes
1 answer

draw vertical line with D3 ( Dynamic Data Display)

I am creating a ChartPlotter and using CursorCoordinateGraph i am able to get the X coordinate on MouseLeftButtonDown event. private CursorCoordinateGraph mouseTrack; private void OnLoaded(object sender, RoutedEventArgs e) { …
Olaru Mircea
  • 2,570
  • 26
  • 49
0
votes
1 answer

Dynamic Data Display LineGraph not updating

I am trying to use Dynamic Data Display for my senior design project, but I'm having difficulty. I can create the graph just fine, but I can't the line to update at all unless I am zooming in and out. In most examples, all they had to do was create…
user2596874
  • 63
  • 1
  • 1
  • 7
0
votes
1 answer

wpf dynamic data display ChartPlotter.AddLineChart function different in new build

Dynamic Data Display wpf: the function call ChartPlotter.AddLineChart() now takes an object parameter as input in the new build 0.4. Has anyone here experienced the same thing? Are there any examples on the web for this? I changed from version 0.3…