scichart 3.2.538 → 3.2.549

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "scichart",
3
3
  "description": "Fast WebGL JavaScript Charting Library and Framework",
4
4
  "homepage": "https://www.scichart.com",
5
- "version": "3.2.538",
5
+ "version": "3.2.549",
6
6
  "main": "index.js",
7
7
  "types": "index.d.ts",
8
8
  "keywords": [
@@ -670,6 +670,7 @@ export declare class SCRTScatterSeriesDrawingProvider {
670
670
  export declare class SCRTOhlcDrawingParams {
671
671
  SetPens(strokeUpPen: SCRTPen, strokeDownPen: SCRTPen): void;
672
672
  SetBrushes(fillUpBrush: SCRTBrush, fillDownBrush: SCRTBrush): void;
673
+ SetValues(xValues: SCRTDoubleVector, openValues: SCRTDoubleVector, highValues: SCRTDoubleVector, lowValues: SCRTDoubleVector, closeValues: SCRTDoubleVector): void;
673
674
  SetPalettedColors(palettedColors: IntVector): void;
674
675
  Reset(): void;
675
676
  count: number;
@@ -697,7 +698,7 @@ export declare class SCRTBrush {
697
698
  *WebAssembly / Native Candlestick drawing provider, which draws batched / fast candles using our WebGL2 Rendering Engine
698
699
  */
699
700
  export declare class SCRTCandlestickSeriesDrawingProvider {
700
- DrawPointsVec(nativeContext: SCRTRenderContext, xValues: SCRTDoubleVector, openValues: SCRTDoubleVector, highValues: SCRTDoubleVector, lowValues: SCRTDoubleVector, closeValues: SCRTDoubleVector, xCoordinateCalculator: CoordinateCalculator, yCoordinateCalculator: CoordinateCalculator, params: SCRTOhlcDrawingParams): void;
701
+ DrawPointsVec(nativeContext: SCRTRenderContext, xCoordinateCalculator: CoordinateCalculator, yCoordinateCalculator: CoordinateCalculator, params: SCRTOhlcDrawingParams): void;
701
702
  delete(): void;
702
703
  }
703
704
  /**