1

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 = new FastLineRenderableSeries(wasmContext, {
   dataSeries: ds,
   strokeThickness: 1,
   stroke: "red"
   pointMarker: new SquarePointMarker(wasmContext, {
      width: 5,
      height: 5,
      fill: "blue",
      stroke: "blue",
      strokeThickness: 1,
   });
});
Michael Klishevich
  • 1,774
  • 1
  • 17
  • 17

1 Answers1

1

According to SciChart.js Forums, this issue was patched in build 1.1.1362.

You can get the latest builds of SciChart.js over at npm.

Dr. Andrew Burnett-Thompson
  • 20,980
  • 8
  • 88
  • 178