scichart 2.1.2294 → 2.2.2378

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.
Files changed (184) hide show
  1. package/Builder/buildAxis.d.ts +7 -0
  2. package/Builder/buildAxis.js +6 -0
  3. package/Builder/buildDataSeries.d.ts +19 -1
  4. package/Builder/buildDataSeries.js +22 -1
  5. package/Builder/buildModifiers.d.ts +2 -1
  6. package/Builder/buildSeries.d.ts +7 -2
  7. package/Builder/buildSeries.js +5 -1
  8. package/Charting/ChartModifiers/CursorModifier.d.ts +5 -0
  9. package/Charting/ChartModifiers/CursorModifier.js +15 -10
  10. package/Charting/ChartModifiers/LegendModifier.d.ts +31 -0
  11. package/Charting/ChartModifiers/LegendModifier.js +22 -0
  12. package/Charting/ChartModifiers/RolloverModifier.d.ts +10 -0
  13. package/Charting/ChartModifiers/RolloverModifier.js +76 -19
  14. package/Charting/Drawing/WebGlRenderContext2D.js +26 -42
  15. package/Charting/LayoutManager/LayoutManager.js +6 -1
  16. package/Charting/Model/BaseHeatmapDataSeries.d.ts +3 -2
  17. package/Charting/Model/BaseHeatmapDataSeries.js +17 -5
  18. package/Charting/Model/ChartData/HlcSeriesInfo.d.ts +12 -0
  19. package/Charting/Model/ChartData/HlcSeriesInfo.js +52 -0
  20. package/Charting/Model/Filters/HlcCustomFilter.d.ts +41 -0
  21. package/Charting/Model/Filters/HlcCustomFilter.js +119 -0
  22. package/Charting/Model/Filters/HlcFilterBase.d.ts +30 -0
  23. package/Charting/Model/Filters/HlcFilterBase.js +141 -0
  24. package/Charting/Model/Filters/HlcScaleOffsetFilter.d.ts +18 -0
  25. package/Charting/Model/Filters/HlcScaleOffsetFilter.js +86 -0
  26. package/Charting/Model/Filters/XyFilterBase.d.ts +2 -0
  27. package/Charting/Model/Filters/XyFilterBase.js +6 -0
  28. package/Charting/Model/Filters/XyyFilterBase.js +9 -0
  29. package/Charting/Model/Filters/XyzFilterBase.js +12 -3
  30. package/Charting/Model/HlcDataSeries.d.ts +189 -0
  31. package/Charting/Model/HlcDataSeries.js +557 -0
  32. package/Charting/Model/IDataSeries.d.ts +5 -1
  33. package/Charting/Model/IDataSeries.js +4 -0
  34. package/Charting/Model/PointSeries/BasePointSeriesWrapped.d.ts +1 -1
  35. package/Charting/Model/PointSeries/BasePointSeriesWrapped.js +2 -2
  36. package/Charting/Model/PointSeries/HlcPointSeriesWrapped.d.ts +10 -0
  37. package/Charting/Model/PointSeries/HlcPointSeriesWrapped.js +31 -0
  38. package/Charting/Model/PointSeries/IPointSeries.d.ts +5 -0
  39. package/Charting/Model/PointSeries/XyyPointSeriesWrapped.d.ts +1 -1
  40. package/Charting/Model/PointSeries/XyyPointSeriesWrapped.js +3 -3
  41. package/Charting/Numerics/CoordinateCalculators/LogarithmicCoordinateCalculator.d.ts +2 -2
  42. package/Charting/Numerics/CoordinateCalculators/LogarithmicCoordinateCalculator.js +15 -6
  43. package/Charting/Services/SciChartRenderer.d.ts +1 -0
  44. package/Charting/Services/SciChartRenderer.js +6 -0
  45. package/Charting/Visuals/Annotations/AnnotationBase.d.ts +6 -1
  46. package/Charting/Visuals/Annotations/AnnotationBase.js +23 -2
  47. package/Charting/Visuals/Annotations/CursorTooltipSvgAnnotation.d.ts +6 -0
  48. package/Charting/Visuals/Annotations/CursorTooltipSvgAnnotation.js +46 -5
  49. package/Charting/Visuals/Annotations/CustomAnnotation.d.ts +3 -1
  50. package/Charting/Visuals/Annotations/CustomAnnotation.js +14 -3
  51. package/Charting/Visuals/Annotations/HorizontalLineAnnotation.d.ts +4 -0
  52. package/Charting/Visuals/Annotations/HorizontalLineAnnotation.js +3 -2
  53. package/Charting/Visuals/Annotations/RolloverLegendSvgAnnotation.d.ts +1 -1
  54. package/Charting/Visuals/Annotations/RolloverLegendSvgAnnotation.js +13 -3
  55. package/Charting/Visuals/Annotations/RolloverTooltipSvgAnnotation.d.ts +13 -0
  56. package/Charting/Visuals/Annotations/RolloverTooltipSvgAnnotation.js +71 -14
  57. package/Charting/Visuals/Annotations/VerticalLineAnnotation.d.ts +2 -0
  58. package/Charting/Visuals/Annotations/VerticalLineAnnotation.js +3 -2
  59. package/Charting/Visuals/Annotations/constants.d.ts +2 -1
  60. package/Charting/Visuals/Annotations/constants.js +1 -0
  61. package/Charting/Visuals/Axis/AxisBase2D.d.ts +11 -1
  62. package/Charting/Visuals/Axis/AxisBase2D.js +75 -17
  63. package/Charting/Visuals/Axis/AxisCore.d.ts +4 -0
  64. package/Charting/Visuals/Axis/AxisCore.js +6 -0
  65. package/Charting/Visuals/Axis/AxisRenderer.js +6 -10
  66. package/Charting/Visuals/Axis/DateTimeNumericAxis.d.ts +11 -0
  67. package/Charting/Visuals/Axis/DateTimeNumericAxis.js +36 -0
  68. package/Charting/Visuals/Axis/DeltaCalculator/DateTimeDeltaCalculator.d.ts +28 -0
  69. package/Charting/Visuals/Axis/DeltaCalculator/DateTimeDeltaCalculator.js +125 -0
  70. package/Charting/Visuals/Axis/LabelProvider/PieLabelProvider.d.ts +34 -0
  71. package/Charting/Visuals/Axis/LabelProvider/PieLabelProvider.js +82 -0
  72. package/Charting/Visuals/Axis/LabelProvider/SmartDateLabelProvider.d.ts +2 -2
  73. package/Charting/Visuals/Axis/LabelProvider/SmartDateLabelProvider.js +39 -6
  74. package/Charting/Visuals/Axis/LogarithmicAxis.d.ts +1 -0
  75. package/Charting/Visuals/Axis/LogarithmicAxis.js +5 -3
  76. package/Charting/Visuals/Helpers/NativeObject.d.ts +13 -0
  77. package/Charting/Visuals/Helpers/NativeObject.js +101 -0
  78. package/Charting/Visuals/Helpers/createNativeRect.d.ts +2 -2
  79. package/Charting/Visuals/Helpers/createNativeRect.js +3 -1
  80. package/Charting/Visuals/Helpers/drawBorder.js +2 -2
  81. package/Charting/Visuals/Helpers/drawLabel.d.ts +3 -3
  82. package/Charting/Visuals/Helpers/drawLabel.js +38 -18
  83. package/Charting/Visuals/I2DSurfaceOptions.d.ts +6 -0
  84. package/Charting/Visuals/Legend/SciChartLegend.d.ts +4 -0
  85. package/Charting/Visuals/Legend/SciChartLegend.js +7 -1
  86. package/Charting/Visuals/RenderableSeries/BaseRenderableSeries.d.ts +24 -8
  87. package/Charting/Visuals/RenderableSeries/BaseRenderableSeries.js +109 -31
  88. package/Charting/Visuals/RenderableSeries/BaseStackedCollection.d.ts +3 -0
  89. package/Charting/Visuals/RenderableSeries/BaseStackedCollection.js +8 -0
  90. package/Charting/Visuals/RenderableSeries/BaseStackedRenderableSeries.d.ts +17 -166
  91. package/Charting/Visuals/RenderableSeries/BaseStackedRenderableSeries.js +35 -328
  92. package/Charting/Visuals/RenderableSeries/DrawingProviders/BandSeriesDrawingProvider.d.ts +5 -2
  93. package/Charting/Visuals/RenderableSeries/DrawingProviders/BandSeriesDrawingProvider.js +5 -3
  94. package/Charting/Visuals/RenderableSeries/DrawingProviders/BaseSeriesDrawingProvider.js +14 -11
  95. package/Charting/Visuals/RenderableSeries/DrawingProviders/ErrorSeriesDrawingProvider.d.ts +46 -0
  96. package/Charting/Visuals/RenderableSeries/DrawingProviders/ErrorSeriesDrawingProvider.js +252 -0
  97. package/Charting/Visuals/RenderableSeries/DrawingProviders/UniformHeatmapDrawingProvider.js +1 -1
  98. package/Charting/Visuals/RenderableSeries/FastErrorBarsRenderableSeries.d.ts +188 -0
  99. package/Charting/Visuals/RenderableSeries/FastErrorBarsRenderableSeries.js +357 -0
  100. package/Charting/Visuals/RenderableSeries/FastImpulseRenderableSeries.js +3 -10
  101. package/Charting/Visuals/RenderableSeries/HitTest/ErrorSeriesHitTestProvider.d.ts +20 -0
  102. package/Charting/Visuals/RenderableSeries/HitTest/ErrorSeriesHitTestProvider.js +120 -0
  103. package/Charting/Visuals/RenderableSeries/HitTest/hitTestHelpers.d.ts +6 -0
  104. package/Charting/Visuals/RenderableSeries/HitTest/hitTestHelpers.js +36 -0
  105. package/Charting/Visuals/RenderableSeries/IBaseRenderableSeriesOptions.d.ts +8 -0
  106. package/Charting/Visuals/RenderableSeries/IRenderableSeries.d.ts +6 -0
  107. package/Charting/Visuals/RenderableSeries/SeriesVisibleChangedArgs.d.ts +6 -0
  108. package/Charting/Visuals/RenderableSeries/SeriesVisibleChangedArgs.js +11 -0
  109. package/Charting/Visuals/RenderableSeries/StackedColumnCollection.js +1 -2
  110. package/Charting/Visuals/RenderableSeries/StackedColumnRenderableSeries.d.ts +22 -0
  111. package/Charting/Visuals/RenderableSeries/StackedColumnRenderableSeries.js +38 -1
  112. package/Charting/Visuals/RenderableSeries/StackedMountainCollection.d.ts +2 -2
  113. package/Charting/Visuals/RenderableSeries/StackedMountainCollection.js +26 -45
  114. package/Charting/Visuals/RenderableSeries/StackedMountainRenderableSeries.d.ts +77 -18
  115. package/Charting/Visuals/RenderableSeries/StackedMountainRenderableSeries.js +139 -42
  116. package/Charting/Visuals/RenderableSeries/UniformHeatmapRenderableSeries.d.ts +13 -0
  117. package/Charting/Visuals/RenderableSeries/UniformHeatmapRenderableSeries.js +23 -3
  118. package/Charting/Visuals/RenderableSeries/XyScatterRenderableSeries.d.ts +5 -0
  119. package/Charting/Visuals/RenderableSeries/XyScatterRenderableSeries.js +21 -1
  120. package/Charting/Visuals/RenderableSeries/constants.d.ts +8 -0
  121. package/Charting/Visuals/RenderableSeries/constants.js +8 -0
  122. package/Charting/Visuals/SciChartPieSurface/IPieSurfaceOptions.d.ts +25 -2
  123. package/Charting/Visuals/SciChartPieSurface/PieSegment/IPieSegment.d.ts +9 -1
  124. package/Charting/Visuals/SciChartPieSurface/PieSegment/PieSegment.d.ts +128 -2
  125. package/Charting/Visuals/SciChartPieSurface/PieSegment/PieSegment.js +202 -21
  126. package/Charting/Visuals/SciChartPieSurface/PieSegment/constants.d.ts +6 -1
  127. package/Charting/Visuals/SciChartPieSurface/PieSegment/constants.js +5 -0
  128. package/Charting/Visuals/SciChartPieSurface/SciChartPieSurface.d.ts +77 -3
  129. package/Charting/Visuals/SciChartPieSurface/SciChartPieSurface.js +373 -81
  130. package/Charting/Visuals/SciChartPieSurface/constants.d.ts +7 -1
  131. package/Charting/Visuals/SciChartPieSurface/constants.js +6 -0
  132. package/Charting/Visuals/SciChartSurface.d.ts +13 -2
  133. package/Charting/Visuals/SciChartSurface.js +39 -3
  134. package/Charting/Visuals/createMaster.js +17 -13
  135. package/Charting/Visuals/createSingle.js +5 -3
  136. package/Charting/Visuals/licenseManager2D.d.ts +6 -0
  137. package/Charting/Visuals/licenseManager2D.js +83 -8
  138. package/Charting/Visuals/licenseManager2dState.d.ts +11 -0
  139. package/Charting/Visuals/licenseManager2dState.js +37 -1
  140. package/Charting/Visuals/loader.js +4 -1
  141. package/Charting/Visuals/sciChartInitCommon.d.ts +2 -2
  142. package/Charting/Visuals/sciChartInitCommon.js +13 -9
  143. package/Charting3D/Visuals/Primitives/ScatterPointsSceneEntity.js +6 -2
  144. package/Charting3D/Visuals/SciChart3DRenderer.js +1 -1
  145. package/Charting3D/Visuals/createMaster3d.js +20 -14
  146. package/Charting3D/Visuals/createSingle3d.js +3 -4
  147. package/Charting3D/Visuals/licenseManager3D.js +3 -1
  148. package/Core/BuildStamp.d.ts +1 -1
  149. package/Core/BuildStamp.js +2 -2
  150. package/Core/Telemetry.d.ts +7 -0
  151. package/Core/Telemetry.js +106 -0
  152. package/Core/storage/localStorageApi.d.ts +4 -0
  153. package/Core/storage/localStorageApi.js +12 -0
  154. package/_wasm/scichart.browser.js +1 -1
  155. package/_wasm/scichart2d.js +95 -95
  156. package/_wasm/scichart2d.wasm +0 -0
  157. package/_wasm/scichart3d.js +14 -14
  158. package/_wasm/scichart3d.wasm +0 -0
  159. package/package.json +1 -1
  160. package/types/AxisType.d.ts +5 -1
  161. package/types/AxisType.js +4 -0
  162. package/types/Color.d.ts +1 -0
  163. package/types/Color.js +1 -0
  164. package/types/DataFilterType.d.ts +1 -0
  165. package/types/DataFilterType.js +1 -0
  166. package/types/DataPointWidthMode.d.ts +13 -0
  167. package/types/DataPointWidthMode.js +17 -0
  168. package/types/ErrorDirection.d.ts +13 -0
  169. package/types/ErrorDirection.js +17 -0
  170. package/types/ErrorMode.d.ts +17 -0
  171. package/types/ErrorMode.js +21 -0
  172. package/types/LabelPlacement.d.ts +8 -0
  173. package/types/LabelPlacement.js +11 -1
  174. package/types/LabelProviderType.d.ts +5 -1
  175. package/types/LabelProviderType.js +4 -0
  176. package/types/SeriesType.d.ts +3 -1
  177. package/types/SeriesType.js +2 -0
  178. package/types/TSciChart.d.ts +8 -2
  179. package/types/TSciChart3D.d.ts +5 -2
  180. package/types/TSciChartSurfaceCanvases.d.ts +1 -0
  181. package/utils/date.d.ts +1 -0
  182. package/utils/date.js +15 -1
  183. package/utils/guid.d.ts +6 -0
  184. package/utils/guid.js +17 -1
@@ -1,32 +1,24 @@
1
1
  import { TSeriesDefinition } from "../../../Builder/buildSeries";
2
2
  import { SeriesAnimationFiniteStateMachine } from "../../../Core/Animations/AnimationFiniteStateMachine";
3
- import { EventHandler } from "../../../Core/EventHandler";
4
3
  import { NumberRange } from "../../../Core/NumberRange";
5
4
  import { ESeriesType } from "../../../types/SeriesType";
6
5
  import { SCRTDoubleVector, TSciChart } from "../../../types/TSciChart";
7
- import { ELineDrawMode, WebGlRenderContext2D } from "../../Drawing/WebGlRenderContext2D";
6
+ import { WebGlRenderContext2D } from "../../Drawing/WebGlRenderContext2D";
8
7
  import { SeriesInfo } from "../../Model/ChartData/SeriesInfo";
9
8
  import { IDataSeries } from "../../Model/IDataSeries";
10
- import { IPaletteProvider } from "../../Model/IPaletteProvider";
11
9
  import { IPointSeries } from "../../Model/PointSeries/IPointSeries";
12
10
  import { EResamplingMode } from "../../Numerics/Resamplers/ResamplingMode";
13
11
  import { ResamplingParams } from "../../Numerics/Resamplers/ResamplingParams";
14
12
  import { RenderPassData } from "../../Services/RenderPassData";
15
- import { IThemeProvider } from "../../Themes/IThemeProvider";
16
13
  import { AxisCore } from "../Axis/AxisCore";
17
- import { IPointMarker } from "../PointMarkers/IPointMarker";
18
14
  import { SciChartSurface } from "../SciChartSurface";
19
- import { TDpiChangedEventArgs } from "../TextureManager/DpiHelper";
20
15
  import { SeriesAnimation } from "./Animations/SeriesAnimation";
16
+ import { BaseRenderableSeries } from "./BaseRenderableSeries";
21
17
  import { BaseStackedCollection } from "./BaseStackedCollection";
22
- import { ISeriesDrawingProvider } from "./DrawingProviders/ISeriesDrawingProvider";
23
18
  import { HitTestInfo } from "./HitTest/HitTestInfo";
24
19
  import { IHitTestProvider } from "./HitTest/IHitTestProvider";
25
- import { IRenderableSeries } from "./IRenderableSeries";
20
+ import { TSeriesHoverChangedCallback, TSeriesSelectionChangedCallback, TSeriesVisibleChangedCallback } from "./IBaseRenderableSeriesOptions";
26
21
  import { RolloverModifierRenderableSeriesProps } from "./RolloverModifier/RolloverModifierRenderableSeriesProps";
27
- import { SeriesHoveredArgs } from "./SeriesHoveredArgs";
28
- import { SeriesSelectedArgs } from "./SeriesSelectedArgs";
29
- import { ShaderEffect } from "./ShaderEffect";
30
22
  /**
31
23
  * Options to pass to the {@link BasedStackedRenderableSeries} constructor
32
24
  */
@@ -40,6 +32,18 @@ export interface IBasedStackedRenderableSeriesOptions {
40
32
  * where value 1 means the Series is opaque; 0 - transparent.
41
33
  */
42
34
  opacity?: number;
35
+ /**
36
+ * Optional callback function when isVisible changed. Also see {@link IRenderableSeries.isVisibleChanged} event handler
37
+ */
38
+ onIsVisibleChanged?: TSeriesVisibleChangedCallback | string;
39
+ /**
40
+ * Optional callback function when selected changed. Also see {@link IRenderableSeries.selected} event handler
41
+ */
42
+ onSelectedChanged?: TSeriesSelectionChangedCallback | string;
43
+ /**
44
+ * Optional callback function when hovered changed. Also see {@link IRenderableSeries.hovered} event handler
45
+ */
46
+ onHoveredChanged?: TSeriesHoverChangedCallback | string;
43
47
  }
44
48
  /**
45
49
  * Base class for stacked mountain, column series in SciChart's High Performance Real-time
@@ -48,86 +52,36 @@ export interface IBasedStackedRenderableSeriesOptions {
48
52
  * See derived types {@link StackedMountainRenderableSeries} and {@link StackedColumnRenderableSeries} for
49
53
  * details on how to implement stacked column and mountain charts in SciChart
50
54
  */
51
- export declare abstract class BaseStackedRenderableSeries implements IRenderableSeries {
55
+ export declare abstract class BaseStackedRenderableSeries extends BaseRenderableSeries {
52
56
  /** @inheritDoc */
53
57
  abstract readonly type: ESeriesType;
54
58
  /** @inheritDoc */
55
59
  readonly id: string;
56
60
  /** @inheritDoc */
57
61
  readonly isStacked: boolean;
58
- /** @inheritDoc */
59
- readonly supportsResampling = false;
60
- /** @inheritDoc */
61
- readonly isSpline: boolean;
62
62
  readonly rolloverModifierProps: RolloverModifierRenderableSeriesProps;
63
- /** @inheritDoc */
64
- selected: EventHandler<SeriesSelectedArgs>;
65
- /** @inheritDoc */
66
- hovered: EventHandler<SeriesHoveredArgs>;
67
63
  hitTestProvider: IHitTestProvider;
68
64
  /**
69
65
  * the accumulated values which are used to draw each column/band for {@link BaseStackedRenderableSeries}
70
66
  */
71
67
  accumulatedValues: SCRTDoubleVector;
72
- /**
73
- * When true, enables drawing optimizations on the series for extra performance
74
- */
75
- enableDrawingOptimisations: boolean;
76
68
  protected accumulatedFinalAnimationValues: SCRTDoubleVector;
77
69
  protected webAssemblyContext: TSciChart;
78
70
  protected parentCollection: BaseStackedCollection<BaseStackedRenderableSeries>;
79
71
  protected notifyParentPropertyChangedFn: (propertyName: string) => void;
80
72
  protected getParentSurfaceFn: () => SciChartSurface;
81
- private dataSeriesProperty;
82
- private drawNaNAsProperty;
83
- private isVisibleProperty;
84
- private paletteProviderProperty;
85
- private pointMarkerProperty;
86
- private isDigitalLineProperty;
87
- private strokeThicknessProperty;
88
- private strokeProperty;
89
- private opacityProperty;
73
+ protected typeMap: Map<string, string>;
90
74
  private opacityOriginalValue;
91
- private isSelectedProperty;
92
- private isHoveredProperty;
93
- /** @inheritDoc */
94
- get isSelected(): boolean;
95
- /** @inheritDoc */
96
- set isSelected(isSelected: boolean);
97
- /** @inheritDoc */
98
- get isHovered(): boolean;
99
- /** @inheritDoc */
100
- set isHovered(isHovered: boolean);
101
75
  /**
102
76
  * Creates an instance of a {@link BaseStackedRenderableSeries}
103
77
  * @param webAssemblyContext The {@link TSciChart | SciChart WebAssembly Context} containing
104
78
  * native methods and access to our WebGL2 WebAssembly Drawing Engine
105
79
  */
106
80
  protected constructor(webAssemblyContext: TSciChart, options?: IBasedStackedRenderableSeriesOptions);
107
- /** @inheritDoc */
108
- get isDigitalLine(): boolean;
109
- /** @inheritDoc */
110
- set isDigitalLine(isDigitalLine: boolean);
111
- /**
112
- * @inheritDoc
113
- */
114
- applyTheme(themeProvider: IThemeProvider): void;
115
81
  /**
116
82
  * @inheritDoc
117
83
  */
118
84
  delete(): void;
119
- /**
120
- * @inheritDoc
121
- */
122
- getDataSeriesName(): string;
123
- /**
124
- * @inheritDoc
125
- */
126
- getDataSeriesValuesCount(): number;
127
- /**
128
- * @inheritDoc
129
- */
130
- getNativeXValues(): SCRTDoubleVector;
131
85
  /**
132
86
  * Called when the {@link BaseStackedRenderableSeries} is detached from its parent {@link BaseStackedCollection}
133
87
  */
@@ -136,16 +90,8 @@ export declare abstract class BaseStackedRenderableSeries implements IRenderable
136
90
  * @inheritDoc
137
91
  */
138
92
  notifyPropertyChanged(propertyName: string): void;
139
- /**
140
- * @inheritDoc
141
- */
142
- onDpiChanged(args: TDpiChangedEventArgs): void;
143
93
  /** @inheritDoc */
144
94
  checkIsOutOfDataRange(xValue: number, yValue: number): boolean;
145
- /**
146
- * invalidateParentCallback() is not supported for BaseStackedRenderableSeries
147
- */
148
- invalidateParentCallback(): void;
149
95
  /**
150
96
  * draw() is not supported for BaseStackedRenderableSeries
151
97
  */
@@ -190,14 +136,6 @@ export declare abstract class BaseStackedRenderableSeries implements IRenderable
190
136
  * onDetach() is not supported for BaseStackedRenderableSeries
191
137
  */
192
138
  onDetach(): void;
193
- /**
194
- * rolloverModifierProps1() is not supported for BaseStackedRenderableSeries
195
- */
196
- set rolloverModifierProps1(value: RolloverModifierRenderableSeriesProps);
197
- /**
198
- * rolloverModifierProps1() is not supported for BaseStackedRenderableSeries
199
- */
200
- get rolloverModifierProps1(): RolloverModifierRenderableSeriesProps;
201
139
  /**
202
140
  * animation() is not supported for BaseStackedRenderableSeries
203
141
  */
@@ -226,66 +164,6 @@ export declare abstract class BaseStackedRenderableSeries implements IRenderable
226
164
  * set parentSurface property is not supported for BaseStackedRenderableSeries
227
165
  */
228
166
  set parentSurface(value: SciChartSurface);
229
- /**
230
- * @inheritDoc
231
- */
232
- get dataSeries(): IDataSeries;
233
- /**
234
- * @inheritDoc
235
- */
236
- set dataSeries(dataSeries: IDataSeries);
237
- /**
238
- * @inheritDoc
239
- */
240
- get drawNaNAs(): ELineDrawMode;
241
- /**
242
- * @inheritDoc
243
- */
244
- set drawNaNAs(drawNaNAs: ELineDrawMode);
245
- /**
246
- * @inheritDoc
247
- */
248
- get isVisible(): boolean;
249
- /**
250
- * @inheritDoc
251
- */
252
- set isVisible(value: boolean);
253
- /**
254
- * @inheritDoc
255
- */
256
- get paletteProvider(): IPaletteProvider;
257
- /**
258
- * @inheritDoc
259
- */
260
- set paletteProvider(paletteProvider: IPaletteProvider);
261
- /**
262
- * @inheritDoc
263
- */
264
- get pointMarker(): IPointMarker;
265
- /**
266
- * @inheritDoc
267
- */
268
- set pointMarker(pointMarker: IPointMarker);
269
- /**
270
- * @inheritDoc
271
- */
272
- get stroke(): string;
273
- /**
274
- * @inheritDoc
275
- */
276
- set stroke(htmlColorCode: string);
277
- /**
278
- * @inheritDoc
279
- */
280
- get strokeThickness(): number;
281
- /**
282
- * @inheritDoc
283
- */
284
- set strokeThickness(value: number);
285
- /** @inheritDoc */
286
- get opacity(): number;
287
- /** @inheritDoc */
288
- set opacity(value: number);
289
167
  /** @inheritDoc */
290
168
  get xAxis(): AxisCore;
291
169
  /** @inheritDoc */
@@ -320,16 +198,6 @@ export declare abstract class BaseStackedRenderableSeries implements IRenderable
320
198
  * getCurrentRenderPassData method is not supported for BaseStackedRenderableSeries
321
199
  */
322
200
  getCurrentRenderPassData(): RenderPassData;
323
- /**
324
- * drawingProviders property is not supported for BaseStackedRenderableSeries
325
- * instead set on the {@link StackedColumnCollection} or {@link StackedMountainCollection}
326
- */
327
- get drawingProviders(): ISeriesDrawingProvider[];
328
- /**
329
- * drawingProviders property is not supported for BaseStackedRenderableSeries,
330
- * instead set on the {@link StackedColumnCollection} or {@link StackedMountainCollection}
331
- */
332
- set drawingProviders(value: ISeriesDrawingProvider[]);
333
201
  /**
334
202
  * xAxisId property is not supported for BaseStackedRenderableSeries,
335
203
  * instead set on the {@link StackedColumnCollection} or {@link StackedMountainCollection}
@@ -350,25 +218,8 @@ export declare abstract class BaseStackedRenderableSeries implements IRenderable
350
218
  * instead set on the {@link StackedColumnCollection} or {@link StackedMountainCollection}
351
219
  */
352
220
  set yAxisId(value: string);
353
- /**
354
- * effect property is not supported for BaseStackedRenderableSeries,
355
- * instead set on the {@link StackedColumnCollection} or {@link StackedMountainCollection}
356
- */
357
- get effect(): ShaderEffect;
358
- /**
359
- * effect property is not supported for BaseStackedRenderableSeries,
360
- * instead set on the {@link StackedColumnCollection} or {@link StackedMountainCollection}
361
- */
362
- set effect(effect: ShaderEffect);
363
221
  onAnimate(): void;
364
222
  get isRunningAnimation(): boolean;
365
223
  enqueueAnimation(animation: SeriesAnimation): void;
366
224
  runAnimation(animation: SeriesAnimation): void;
367
- /**
368
- * Factory function to create a {@link IHitTestProvider | Hit Test Provider}; a class which performs hit-test
369
- * and checks mouse-over and nearest point.
370
- */
371
- protected abstract newHitTestProvider(): IHitTestProvider;
372
- private notifyDataSeriesChanged;
373
- private notifyPointMarkerChanged;
374
225
  }