I am new to JS/Electron. I’m trying to create an Electron App, my Electron App has several charts, I am using LightningChart JS for my charting. The LightningChart API asks my to target a div, then it apparently inserts a canvas into the div upon which it draws. My application stacks 5-10 charts in a vertical column. I would like
Tag: lightningchart
Changing stroke color of LineSeries and/or AreaSeries in LightningChart
Is it possible to change the stroke color of LineSeries and/or AreaSeries in LightningChart JS based on point values? Example 1: Display the line as red when the y-value is above 10.0, but use blue color otherwise. Example 2: Display the line as yellow when x-value is between 1 and 10. Answer As far as current version 3.2 goes, no
how can i create a segmented colored line using lightning chart js? [closed]
Closed. This question needs details or clarity. It is not currently accepting answers. Want to improve this question? Add details and clarify the problem by editing this post. Closed 1 year ago. Improve this question Can anyone draw a segment line using this library? I tried using addsegmentseries method but it didn’t work. Answer Found the answer myself. A segment
Detect direction of touchpad swipe properly
I was able to scale in scale out x axis and y axis , Its working very good with arrow keys , I want to do that with touchpad aswel.I tried this below code ,its working but its not smooth .Sometimes when i zoom in X , its even zooming in Y and vice versa. window.addEventListener(‘mousewheel’, function(e) { And Again
Change Scatter Chart Size and shape dynamically – LightningChart JS
How do we change scatter chart size and shape dynamically while adding data to series I know that we can change color dynamically by Is there any way to change size dynamically like elipse series ? Answer Lightning Chart JS v2.0.0 or greater Point size and rotation can be set individually for each point. To enable support for individual size
How can I move cursor over chart at any place and not just on the series data points?
I have 2 point line series each having default cursor on them. The default cursor runs along the series data (points). What I want is a cursor that I can move anywhere in the chart not just on the series data. Answer thanks for your question. Based on the tags, I’ll assume you are using LightningChart JS. If I understood