Search found 3 matches

by ArctionNitin
Fri Aug 03, 2018 3:05 pm
Forum: LightningChart Feature Requests
Topic: Vertical constant lines
Replies: 3
Views: 23211

Re: Vertical constant lines

Hi, You can create a LineCollection with 1 SegmentLine in it. Vertical line at x= 1 from y= 1 to y = 5 LineCollection lineCollection = new LineCollection(); SegmentLine[] segmentLines = new SegmentLine[1]; SegmentLine segmentLine = new SegmentLine(); segmentLine.AX = 1; segmentLine.BX = 1; segmentLi...
by ArctionNitin
Fri Aug 03, 2018 2:52 pm
Forum: LightningChart Feature Requests
Topic: MultiColorLine property for 2D Line Series
Replies: 3
Views: 14574

Re: MultiColorLine property for 2D Line Series

Hi wojtst and mobusek, We tried to give multi color line feature in 2D charts using CustomLinePointColoringAndShaping event as it was the easiest and quickest way for us (we didn't had this in our backlog for next 1 year). We even got good feedback from customers who requested this feature. So, i wo...
by ArctionNitin
Fri Aug 03, 2018 2:36 pm
Forum: LightningChart Ultimate WinForms
Topic: Problem with panning
Replies: 1
Views: 4220

Re: Problem with panning

Hi Anjali, Yes, ideally it should Pan only and not zoom if you have set ViewXY.ZoomPanOptions.LeftMouseButtonAction = MouseButtonAction.Pan; So, in your case it might me more than that :) I tried to replicate your problem like below and it was working fine for me: public partial class MainWindow : W...