Search found 7 matches

by Micha_el
Mon Mar 18, 2024 5:23 pm
Forum: LightningChart Ultimate How-To's
Topic: How to hide the axis scale nibs
Replies: 1
Views: 285

How to hide the axis scale nibs

Hi, I'm trying to hide the scale nibs on both sides of an axis. It seems there is no Visible property which can be set to true/false. Instead I tried with: axisY.ScaleNibs.Color = Colors.Transparent; axisY.ScaleNibs.Size = new SizeDoubleXY(0, 0); But this does not hide the nibs. I can still see them...
by Micha_el
Mon Mar 18, 2024 4:56 pm
Forum: LightningChart Bug Reports
Topic: Setting value of the MajorDivTickStyle property prevents axis wheel zooming
Replies: 1
Views: 295

Setting value of the MajorDivTickStyle property prevents axis wheel zooming

Hi, I found a strange behaviour which I also can reproduce with your official examples: I want to zoom by mouse wheel when cursor is over the axis, therefore I set in xaml: <lcusb:ViewXY.ZoomPanOptions> <lcusb:ZoomPanOptions AxisWheelAction="Zoom"/> </lcusb:ViewXY.ZoomPanOptions> After tha...
by Micha_el
Tue Mar 12, 2024 1:13 pm
Forum: LightningChart Ultimate WPF
Topic: Impact of changed binding collection to rendering of existing objects
Replies: 1
Views: 268

Impact of changed binding collection to rendering of existing objects

Hi, I have a WPF binding to a collection of YAxis and a collection of PointLineSeries like this <lc:ViewXY YAxes="{Binding YAxisCollection}" PointLineSeries="{Binding PointLineSeries}" When adding or removing single AxisY or single PointLineSeries to their corresponding collectio...
by Micha_el
Mon Feb 05, 2024 10:45 am
Forum: LightningChart Ultimate WPF
Topic: Preferable way to add new points to chart
Replies: 1
Views: 281

Preferable way to add new points to chart

Hi, as I understand, there are different possibilities to add points to a chart. One of your demos show that you can define a binding in xaml code to a dependency property defined in the corresponding data context/view model. Adding points to the binding property leads to an automatic update of the ...
by Micha_el
Tue Nov 28, 2023 12:43 pm
Forum: LightningChart Ultimate How-To's
Topic: How have stair line
Replies: 6
Views: 34297

Re: How have stair line

Hi,

five years later and I would like to ask if there are any news regarding a stair-like line rendering? Did it make it's way into a current release? Such a behavior would really be interesting for our purposes without the need of handling duplicate data points.

Regards,
Michael
by Micha_el
Thu Nov 16, 2023 8:31 am
Forum: LightningChart Ultimate WPF
Topic: How to disable the rectangle zoom
Replies: 2
Views: 8297

Re: How to disable the rectangle zoom

Thanks a lot, that helped.
And there is also a UserInteractiveDeviceButtonAction.Pan setting which would have been my next question where to find that one :D
by Micha_el
Wed Nov 15, 2023 12:34 pm
Forum: LightningChart Ultimate WPF
Topic: How to disable the rectangle zoom
Replies: 2
Views: 8297

How to disable the rectangle zoom

Hi,

is ist possible to completely disable the rectangle zoom mode when moving the mouse while left button is down?
Our intention is to allow the user to enable/disable this mode via button press. Therefore we're looking for a programmatically way to enable /disable this zoom mode.

Thanks in advance.