Search found 8 matches

by Andres
Wed Sep 20, 2017 6:41 pm
Forum: LightningChart Ultimate WPF
Topic: Fixed YAxes width
Replies: 1
Views: 8355

Fixed YAxes width

Hi there, I am looking to have a fixed width value for the YAxis. The reason is , while I am zooming and the ticks gets more digits, the width changes and it's a uncomfortable behavior for the user. How can I get this working? Also I'd like to have the YAxes as thin as posible in order to give more ...
by Andres
Thu Jul 27, 2017 1:53 am
Forum: LightningChart Ultimate WPF
Topic: Sync multiple charts together
Replies: 1
Views: 8402

Sync multiple charts together

Hi , I've created a Custom Control that contains a LightingChart Graph. This control contains a method named RefreshUI() that refresh the Graph taking the information from a Object. In the MainApp I add 4 of these Custom Controls to a Grid. This means that I end up having 4 LightingChart Graphs. The...
by Andres
Mon May 29, 2017 12:44 pm
Forum: LightningChart Ultimate WPF
Topic: How to enable Zooming but fixed 0 to the center
Replies: 3
Views: 6700

Re: How to enable Zooming but fixed 0 to the center

Thanks for the answer.

I am using WPF, and the Event looks like this:

Code: Select all

_chart.MouseWheel += new System.Windows.Input.MouseWheelEventHandler(_chart_MouseWheel);
But I got an error saying that MouseEventArgs doens't containt a definition for e.Delta.


Should I implement this differently on WPF?
by Andres
Mon May 29, 2017 11:14 am
Forum: LightningChart Ultimate WPF
Topic: How to enable Zooming but fixed 0 to the center
Replies: 3
Views: 6700

How to enable Zooming but fixed 0 to the center

]Hi there, I am having some issues enabling zooming. My expected behavior is : Enable Zoom with the Mouse Wheel Keep the 0 value position-fixed. (for the YAxis in the middle). yAxis.SetRange(-5000, 5000); yAxis.ZoomingEnabled = true; yAxis.PanningEnabled = false; The problem is, that the position it...
by Andres
Wed May 24, 2017 12:21 pm
Forum: LightningChart Ultimate WPF
Topic: A line is created joining the beginning and the end
Replies: 2
Views: 9837

Re: A line is created joining the beginning and the end

Thanks!! I did had a (0,0) point.
by Andres
Tue May 23, 2017 3:14 pm
Forum: LightningChart Ultimate WPF
Topic: A line is created joining the beginning and the end
Replies: 2
Views: 9837

A line is created joining the beginning and the end

Hi there, I am facing a problem, when I load my data into the Chart a line is created joining the beginning and the end of my Graph. I am guessing that must be some property but I can't find how to deactivate this. I am using PointLineSeries for this: PointLineSeries pls = chartView.PointLineSeries[...
by Andres
Tue May 23, 2017 12:19 pm
Forum: LightningChart Ultimate WPF
Topic: Limiting the amount of Axis Tricks
Replies: 2
Views: 10243

Re: Limiting the amount of Axis Tricks

that did the trick, Thanks!
by Andres
Mon May 22, 2017 9:51 pm
Forum: LightningChart Ultimate WPF
Topic: Limiting the amount of Axis Tricks
Replies: 2
Views: 10243

Limiting the amount of Axis Tricks

Hi there, I am looking to limit the amount of Axis tricks on my Y Axis. I've manually set the Range using the SetRange method. yAxis.SetRange(-100, 100); But LightingChart automatically creates up to 20 tricks. I want to have 8. Is there a way to set the Max Count of rows that you want to have for t...