Search found 6 matches

by AnjaliIyengar
Tue Jun 04, 2019 10:25 am
Forum: LightningChart Ultimate WinForms
Topic: Marker + Mouse_Up event
Replies: 4
Views: 7307

Re: Marker + Mouse_Up event

Thank you :)
by AnjaliIyengar
Mon Jun 03, 2019 2:30 pm
Forum: LightningChart Ultimate WinForms
Topic: Marker + Mouse_Up event
Replies: 4
Views: 7307

Re: Marker + Mouse_Up event

Hi Arction_LasseP, Thank you for the reply. But 'MouseUp' event is not fired still. I use the version 8.2.1.4001 (Arction.WinForms.Charting.LightningChartUltimate) (I made a sample project with just below lines of code.) My code: ChartEventMarker marker = new ChartEventMarker(); marker.MouseDown += ...
by AnjaliIyengar
Mon Jun 03, 2019 10:16 am
Forum: LightningChart Ultimate WinForms
Topic: Marker + Mouse_Up event
Replies: 4
Views: 7307

Marker + Mouse_Up event

Hi Team, I am using ChartEventMarker. I attach events to it like "PositionChanged,MouseClick ". Both work. However MouseUp event is not fired at all. When should I expect the event to be fired? Why is it not triggering? private void CreateChart() { // Disable rendering, strongly recommende...
by AnjaliIyengar
Wed Aug 01, 2018 1:45 pm
Forum: LightningChart Ultimate WinForms
Topic: Problem with panning
Replies: 1
Views: 4224

Problem with panning

I'm a newbie to programming, so forgive me if the question is silly. :oops: I have graph which I zoom(using mouse wheels) and pan(using left mouse). I want to stop the panning, if it goes bellow 0 on time scale(X-axis). I used "PannedXYEventArgs" and "BeforePanningXYEventArgs event. T...
by AnjaliIyengar
Fri Jul 27, 2018 7:41 am
Forum: LightningChart Ultimate WinForms
Topic: Zooming with limits
Replies: 3
Views: 10911

Re: Zooming with limits

Thank you :)
by AnjaliIyengar
Wed Jul 25, 2018 2:09 pm
Forum: LightningChart Ultimate WinForms
Topic: Zooming with limits
Replies: 3
Views: 10911

Zooming with limits

Hi Team, I am using Winforms. I am zooming my line graph with both right mouse button - rectangle zoom and mouse wheel. But i want to limit the zooming. 1) Not zoom below 0 (origin - time axis) on x-Axis. 2) Not zoom out beyond the graph data. (if you zoom out more, then the graph becomes smaller an...