Search found 8 matches

by n0kx
Mon Apr 25, 2016 6:24 pm
Forum: LightningChart Ultimate How-To's
Topic: Using LightningChart on a web page
Replies: 1
Views: 7665

Using LightningChart on a web page

I'm interested in displaying a LightningChart on a web page. Are there some examples of this being done? I'm not 100% sure of how to go about doing that.

And are there any limitations to displaying a web version of the chart?

Thanks!
by n0kx
Thu May 28, 2015 1:49 pm
Forum: LightningChart Ultimate WPF
Topic: Custom Axis Label Number Format
Replies: 3
Views: 7400

Re: Custom Axis Label Number Format

LabelsNumberFormat accepts standard .net double.ToString() formatting, and this 'k', 'M', 'G', 'T', 'P' etc. isn't supported in it, AFAIK. The engineering format has to be made with axis.FormatValueLabel event handler. In the handler, you get the actual value, and you can output the value as a stri...
by n0kx
Thu May 07, 2015 8:12 pm
Forum: LightningChart Ultimate WPF
Topic: Binding an observable collection
Replies: 1
Views: 3702

Binding an observable collection

I used an observable collection on a previous charting library and I'm trying to do the same with LightningCharts but I'm having a hard time finding the right calls. Here is what I had that worked... MyDataCollection dataCollection = new MyDataCollection(); chart.DataContext = dataCollection; ((Cate...
by n0kx
Wed Apr 29, 2015 1:50 pm
Forum: LightningChart Ultimate WPF
Topic: SampleDataSeries tutorial
Replies: 7
Views: 15212

Re: SampleDataSeries tutorial

ArctionPasi wrote:In WaveformSines collection is actually signalGenerator1.Generator.WaveformSines in WPF.
This is exactly what I needed. Once I put .Generator in all the errors it worked.

Thanks.
by n0kx
Tue Apr 28, 2015 10:28 pm
Forum: LightningChart Ultimate WPF
Topic: SampleDataSeries tutorial
Replies: 7
Views: 15212

Re: SampleDataSeries tutorial

When I use Arction.WPF.SignalTools.GUI.SignalGenerator (<GUI:SignalGenerator x:Name="SignalGen">) many of the definitions and methods are no longer are available. For example... SignalGen.WaveformSines.Clear(); /* 'Arction.WPF.SignalTools.GUI.SignalGenerator' does not contain a definition ...
by n0kx
Tue Apr 28, 2015 10:04 pm
Forum: LightningChart Ultimate WPF
Topic: SampleDataSeries tutorial
Replies: 7
Views: 15212

Re: SampleDataSeries tutorial

It seems you have placed the non-GUI component. Please use Arction.WPF.SignalTools.GUI.SignalGenerator control. I'm adding the SignalGenerator in XAML. What's the syntax for that? Or is there an attribute I need to add to what I have now? <SignalTools:SignalGenerator x:Name="SignalGen"></...
by n0kx
Tue Apr 28, 2015 12:49 pm
Forum: LightningChart Ultimate WPF
Topic: SampleDataSeries tutorial
Replies: 7
Views: 15212

Re: SampleDataSeries tutorial

UpdateUIFromWaveFormComponents method is not needed in WPF version of SignalGenerator. UI is updated automatically. Is there a tutorial for WPF that has all the correct information in it? I've typed everything from the tutorial (minus the updating UI method) and the chart appears, but the signal ge...
by n0kx
Mon Apr 27, 2015 8:35 pm
Forum: LightningChart Ultimate WPF
Topic: SampleDataSeries tutorial
Replies: 7
Views: 15212

SampleDataSeries tutorial

I'm going through the SampleDataSeries tutorial (bottom of page 3) and I've added everything but I'm getting an error with the following code: // Update signal generator UI from added components signalGenerator1.UpdateUIFromWaveFormComponents(); It says Arction.WPF.SignalTools.SignalGenerator does n...