Search found 11 matches

by cchrc
Mon Oct 16, 2023 2:51 pm
Forum: LightningChart Ultimate WPF
Topic: Sync camera view between two 3d charts
Replies: 4
Views: 10024

Re: Sync camera view between two 3d charts

Thank you Kestutis, your feedback has been very helpful!
by cchrc
Fri Oct 13, 2023 11:19 am
Forum: LightningChart Ultimate WPF
Topic: Sync camera view between two 3d charts
Replies: 4
Views: 10024

Re: Sync camera view between two 3d charts

Hi Kestutis, Yes, I'm talking about panning the entire 3D model by holding and dragging the right mouse button. You're correct that this action triggers the CameraViewChanged event. However, the position of the 3D chart isn't updated unless I zoom or rotate the chart further. I'm using LightingChart...
by cchrc
Fri Oct 13, 2023 10:09 am
Forum: LightningChart Ultimate WPF
Topic: Sync camera view between two 3d charts
Replies: 4
Views: 10024

Sync camera view between two 3d charts

Hi there, I have two 3D charts, and I would like to synchronize their camera views. This means that when I zoom, rotate, or pan in one of them, I want the other chart to update its camera settings accordingly. To accomplish this, I am utilizing the CameraViewChanged event as follows: chartA.View3D.C...
by cchrc
Wed Sep 21, 2022 3:42 pm
Forum: LightningChart Ultimate WPF
Topic: Legendbox label size
Replies: 3
Views: 4221

Re: Legendbox label size

Hi Kestutis,
thanks for your reply.

In this particular case I'm going to try to make the longer label smaller.
In any case, it would be nice if you would consider introducing an option to have labels with dynamic widths.
by cchrc
Wed Sep 21, 2022 9:02 am
Forum: LightningChart Ultimate WPF
Topic: Legendbox label size
Replies: 3
Views: 4221

Legendbox label size

Hello, Please consider the attached images of a horizontal-aligned legendbox. It seems that each label gets its size from the larger label. This could be ok when label have the same size, more or less. In my case the result is not very nice. Would it be possible to have each label allocating just th...
by cchrc
Wed Jun 15, 2022 4:06 pm
Forum: LightningChart Bug Reports
Topic: Unwanted view or graphic glitch?
Replies: 2
Views: 11246

Re: Unwanted view or graphic glitch?

Hello Lasse,
thank you for your reply. I implemented the possibility to set ChartRenderOptions.DeviceType as a user settings. I will make some tests the next days and let you know.
by cchrc
Tue Jun 14, 2022 10:18 am
Forum: LightningChart Bug Reports
Topic: Unwanted view or graphic glitch?
Replies: 2
Views: 11246

Unwanted view or graphic glitch?

Hello, In a WPF application that includes LightningChart, one of my users is seeing vertical axes at the X breakpoints that should not be there. PROB.png No other user has been able to replicate the problem so far (around 20 machines). NOPROB.png So I wonder if by chance the user may have activated ...
by cchrc
Sat May 01, 2021 11:20 am
Forum: LightningChart Ultimate WPF
Topic: Prevent moving a marker
Replies: 2
Views: 3926

Re: Prevent moving a marker

Hi, yep I read that the CancelRendering prop is not for preventing the marker move, however I gave it a try :P I resolved my problem in this way: if (true) { e.Marker.YValue = pointLineSeries.Points[pointIndex].Y; } else { pointLineSeries.Points[pointIndex].Y = e.Marker.YValue; } Thanks, C.
by cchrc
Thu Apr 29, 2021 5:25 pm
Forum: LightningChart Ultimate WPF
Topic: Prevent moving a marker
Replies: 2
Views: 3926

Prevent moving a marker

Hi, Under certain circumstances I would like to prevent the position change of markers in the PositionChanged event handler. So, in the handler i have something like this private void Marker_PositionChanged(object sender, PositionChangedSeriesEventMarkerEventArgs e) { // ....... // if (true) { e.Can...
by cchrc
Wed Jan 13, 2021 12:46 pm
Forum: LightningChart Ultimate How-To's
Topic: Problem in switching dynamically the colorTheme property
Replies: 3
Views: 14860

Re: Problem in switching dynamically the colorTheme property

Dear Lasse, thank you for your reply. I've tried your approach, but still I'm having problems. As my users can switch theme at runtime, I use a subscription to a theme observable, as shown in the screen to follow. Apparently it works fine. Charts are rendered with the selected theme, and also switch...
by cchrc
Mon Nov 02, 2020 9:09 am
Forum: LightningChart Ultimate How-To's
Topic: Problem in switching dynamically the colorTheme property
Replies: 3
Views: 14860

Problem in switching dynamically the colorTheme property

In my application users can switch theme between dark and light at runtime. So I would like that also the charts follow the same behavior, however I'm struggling in achieving this. I'm using the semi-bindable API, so I have a xaml like this: <lcusb:LightningChartUltimate ColorTheme="{Binding Th...