Questions tagged [scichart.js]

9 questions
2
votes
1 answer

SciChart.js force loading animation

Is there a way to force the loading animation for SciChart.js ? I receive my data with an api call, but it takes some time to process the data on server side and I would like to see the loading animation until I decide that I have all my data.
Ionica
  • 139
  • 3
  • 13
2
votes
1 answer

How to dispatch from overridden function inside a normal class

I'm trying to call dispatch inside a class. All possible ways to do this lead me to an dead end. Maybe is my case a little special: I have a class which I nead to override and from inside an overridden function I do need to call dispatch. class…
BenHero
  • 323
  • 1
  • 3
  • 9
2
votes
1 answer

SciChart: Working with Zooming module is not working

I am using SciChart Library for showing Graphs. I want to know, how can I use MouseWheelZoomModifier module of SciChart library in my pure HTML & CSS based website. I know there is a documentation available related to React but I am not using it in…
John Doe
  • 1,401
  • 1
  • 3
  • 14
2
votes
1 answer

How connect SciChart to Nuxt

I need how coonect SciChart to Nuxt.js i did npm init nuxt-app "scichart" npm install scichart and i catch error packeg.json { "name": "scichart", "version": "1.0.0", "private": true, "scripts": { "dev": "nuxt", "build": "nuxt…
2
votes
2 answers

Logarithmic Scale for Javascript Scichart

I am building an application that requires toggling between Linear and Logarithmic scales. The application is doing realtime socket streaming. Curious if anyone had any recommendations on how best to implement this functionality? I see it exists as…
1
vote
1 answer

How can I add a drop-down menu to change the theme of sci chart using html and js?

I have an XY SciChart.js chart in which I added two line charts with dummy data. Then I added a drop-down menu. How can I add a drop-down menu to change the theme of sci chart using html css and js in visual studio code?
Ayana VS
  • 11
  • 2
1
vote
1 answer

SciChart: Working with JavaScript Heatmap Chart

I am using SciChart Library for showing JS Heatmap Chart. According to the below documentation, the zValues variable is generated using iterate function but when I try to use it in my HTML & CSS based website, Its not…
John Doe
  • 1,401
  • 1
  • 3
  • 14
1
vote
1 answer

How to atart chart multiple YAxis(s) to zero

I am using scichartJS "scichart": "^1.4.1607" and I need to have my multiple Y-Axis(s) start at zero. And also the labels need to be aligned. Here is a screenshot of a different chart that does it correctly. Here is link to documentation on…
texas697
  • 5,609
  • 16
  • 65
  • 131
1
vote
1 answer

flippedCoordinates rotated chart pointMarker showing wrong place

enter image description here Points are not plotted correct on the scichart xAxis.axisAlignment = EAxisAlignment.Left; xAxis.flippedCoordinates = false; yAxis.axisAlignment = EAxisAlignment.Top; yAxis.flippedCoordinates = true; const fastLineSeries…