scichart 2.1.2301 → 2.2.2389
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/Builder/buildAxis.d.ts +7 -0
- package/Builder/buildAxis.js +6 -0
- package/Builder/buildDataSeries.d.ts +19 -1
- package/Builder/buildDataSeries.js +22 -1
- package/Builder/buildModifiers.d.ts +2 -1
- package/Builder/buildSeries.d.ts +7 -2
- package/Builder/buildSeries.js +5 -1
- package/Charting/ChartModifiers/CursorModifier.d.ts +5 -0
- package/Charting/ChartModifiers/CursorModifier.js +15 -10
- package/Charting/ChartModifiers/LegendModifier.d.ts +31 -0
- package/Charting/ChartModifiers/LegendModifier.js +22 -0
- package/Charting/ChartModifiers/ModifierMouseArgs.d.ts +2 -2
- package/Charting/ChartModifiers/ModifierMouseArgs.js +4 -2
- package/Charting/ChartModifiers/RolloverModifier.d.ts +10 -0
- package/Charting/ChartModifiers/RolloverModifier.js +76 -19
- package/Charting/Drawing/WebGlRenderContext2D.js +26 -42
- package/Charting/LayoutManager/LayoutManager.js +6 -1
- package/Charting/Model/BaseHeatmapDataSeries.d.ts +1 -0
- package/Charting/Model/BaseHeatmapDataSeries.js +5 -2
- package/Charting/Model/ChartData/HlcSeriesInfo.d.ts +12 -0
- package/Charting/Model/ChartData/HlcSeriesInfo.js +52 -0
- package/Charting/Model/Filters/HlcCustomFilter.d.ts +41 -0
- package/Charting/Model/Filters/HlcCustomFilter.js +119 -0
- package/Charting/Model/Filters/HlcFilterBase.d.ts +30 -0
- package/Charting/Model/Filters/HlcFilterBase.js +141 -0
- package/Charting/Model/Filters/HlcScaleOffsetFilter.d.ts +18 -0
- package/Charting/Model/Filters/HlcScaleOffsetFilter.js +86 -0
- package/Charting/Model/Filters/XyFilterBase.d.ts +2 -0
- package/Charting/Model/Filters/XyFilterBase.js +6 -0
- package/Charting/Model/Filters/XyyFilterBase.js +9 -0
- package/Charting/Model/Filters/XyzFilterBase.js +12 -3
- package/Charting/Model/HlcDataSeries.d.ts +189 -0
- package/Charting/Model/HlcDataSeries.js +557 -0
- package/Charting/Model/IDataSeries.d.ts +5 -1
- package/Charting/Model/IDataSeries.js +4 -0
- package/Charting/Model/PointSeries/BasePointSeriesWrapped.d.ts +1 -1
- package/Charting/Model/PointSeries/BasePointSeriesWrapped.js +2 -2
- package/Charting/Model/PointSeries/HlcPointSeriesWrapped.d.ts +10 -0
- package/Charting/Model/PointSeries/HlcPointSeriesWrapped.js +31 -0
- package/Charting/Model/PointSeries/IPointSeries.d.ts +5 -0
- package/Charting/Model/PointSeries/XyyPointSeriesWrapped.d.ts +1 -1
- package/Charting/Model/PointSeries/XyyPointSeriesWrapped.js +3 -3
- package/Charting/Numerics/CoordinateCalculators/LogarithmicCoordinateCalculator.d.ts +2 -2
- package/Charting/Numerics/CoordinateCalculators/LogarithmicCoordinateCalculator.js +15 -6
- package/Charting/Services/SciChartRenderer.d.ts +1 -0
- package/Charting/Services/SciChartRenderer.js +6 -0
- package/Charting/Visuals/Annotations/AnnotationBase.d.ts +6 -1
- package/Charting/Visuals/Annotations/AnnotationBase.js +23 -2
- package/Charting/Visuals/Annotations/CursorTooltipSvgAnnotation.d.ts +6 -0
- package/Charting/Visuals/Annotations/CursorTooltipSvgAnnotation.js +46 -5
- package/Charting/Visuals/Annotations/CustomAnnotation.d.ts +3 -1
- package/Charting/Visuals/Annotations/CustomAnnotation.js +14 -3
- package/Charting/Visuals/Annotations/HorizontalLineAnnotation.d.ts +4 -0
- package/Charting/Visuals/Annotations/HorizontalLineAnnotation.js +3 -2
- package/Charting/Visuals/Annotations/RolloverLegendSvgAnnotation.d.ts +1 -1
- package/Charting/Visuals/Annotations/RolloverLegendSvgAnnotation.js +13 -3
- package/Charting/Visuals/Annotations/RolloverTooltipSvgAnnotation.d.ts +13 -0
- package/Charting/Visuals/Annotations/RolloverTooltipSvgAnnotation.js +71 -14
- package/Charting/Visuals/Annotations/VerticalLineAnnotation.d.ts +2 -0
- package/Charting/Visuals/Annotations/VerticalLineAnnotation.js +3 -2
- package/Charting/Visuals/Annotations/constants.d.ts +2 -1
- package/Charting/Visuals/Annotations/constants.js +1 -0
- package/Charting/Visuals/Axis/AxisBase2D.d.ts +11 -1
- package/Charting/Visuals/Axis/AxisBase2D.js +75 -17
- package/Charting/Visuals/Axis/AxisCore.d.ts +4 -0
- package/Charting/Visuals/Axis/AxisCore.js +6 -0
- package/Charting/Visuals/Axis/AxisRenderer.js +6 -10
- package/Charting/Visuals/Axis/DateTimeNumericAxis.d.ts +11 -0
- package/Charting/Visuals/Axis/DateTimeNumericAxis.js +36 -0
- package/Charting/Visuals/Axis/DeltaCalculator/DateTimeDeltaCalculator.d.ts +28 -0
- package/Charting/Visuals/Axis/DeltaCalculator/DateTimeDeltaCalculator.js +125 -0
- package/Charting/Visuals/Axis/LabelProvider/PieLabelProvider.d.ts +34 -0
- package/Charting/Visuals/Axis/LabelProvider/PieLabelProvider.js +82 -0
- package/Charting/Visuals/Axis/LabelProvider/SmartDateLabelProvider.d.ts +2 -2
- package/Charting/Visuals/Axis/LabelProvider/SmartDateLabelProvider.js +39 -6
- package/Charting/Visuals/Axis/LogarithmicAxis.d.ts +1 -0
- package/Charting/Visuals/Axis/LogarithmicAxis.js +5 -3
- package/Charting/Visuals/Helpers/NativeObject.d.ts +13 -0
- package/Charting/Visuals/Helpers/NativeObject.js +101 -0
- package/Charting/Visuals/Helpers/createNativeRect.d.ts +2 -2
- package/Charting/Visuals/Helpers/createNativeRect.js +3 -1
- package/Charting/Visuals/Helpers/drawBorder.js +2 -2
- package/Charting/Visuals/Helpers/drawLabel.d.ts +3 -3
- package/Charting/Visuals/Helpers/drawLabel.js +38 -18
- package/Charting/Visuals/I2DSurfaceOptions.d.ts +6 -0
- package/Charting/Visuals/Legend/SciChartLegend.d.ts +4 -0
- package/Charting/Visuals/Legend/SciChartLegend.js +8 -2
- package/Charting/Visuals/Legend/SciChartLegendBase.d.ts +1 -0
- package/Charting/Visuals/Legend/SciChartLegendBase.js +4 -2
- package/Charting/Visuals/Legend/SciChartPieLegend.js +1 -1
- package/Charting/Visuals/RenderableSeries/BaseRenderableSeries.d.ts +24 -8
- package/Charting/Visuals/RenderableSeries/BaseRenderableSeries.js +109 -31
- package/Charting/Visuals/RenderableSeries/BaseStackedCollection.d.ts +3 -0
- package/Charting/Visuals/RenderableSeries/BaseStackedCollection.js +8 -0
- package/Charting/Visuals/RenderableSeries/BaseStackedRenderableSeries.d.ts +17 -166
- package/Charting/Visuals/RenderableSeries/BaseStackedRenderableSeries.js +35 -328
- package/Charting/Visuals/RenderableSeries/DrawingProviders/BandSeriesDrawingProvider.d.ts +5 -2
- package/Charting/Visuals/RenderableSeries/DrawingProviders/BandSeriesDrawingProvider.js +5 -3
- package/Charting/Visuals/RenderableSeries/DrawingProviders/BaseSeriesDrawingProvider.js +14 -11
- package/Charting/Visuals/RenderableSeries/DrawingProviders/ErrorSeriesDrawingProvider.d.ts +46 -0
- package/Charting/Visuals/RenderableSeries/DrawingProviders/ErrorSeriesDrawingProvider.js +252 -0
- package/Charting/Visuals/RenderableSeries/FastErrorBarsRenderableSeries.d.ts +188 -0
- package/Charting/Visuals/RenderableSeries/FastErrorBarsRenderableSeries.js +357 -0
- package/Charting/Visuals/RenderableSeries/FastImpulseRenderableSeries.js +3 -10
- package/Charting/Visuals/RenderableSeries/HitTest/ErrorSeriesHitTestProvider.d.ts +20 -0
- package/Charting/Visuals/RenderableSeries/HitTest/ErrorSeriesHitTestProvider.js +120 -0
- package/Charting/Visuals/RenderableSeries/HitTest/hitTestHelpers.d.ts +6 -0
- package/Charting/Visuals/RenderableSeries/HitTest/hitTestHelpers.js +36 -0
- package/Charting/Visuals/RenderableSeries/IBaseRenderableSeriesOptions.d.ts +8 -0
- package/Charting/Visuals/RenderableSeries/IRenderableSeries.d.ts +6 -0
- package/Charting/Visuals/RenderableSeries/SeriesVisibleChangedArgs.d.ts +6 -0
- package/Charting/Visuals/RenderableSeries/SeriesVisibleChangedArgs.js +11 -0
- package/Charting/Visuals/RenderableSeries/StackedColumnCollection.js +1 -2
- package/Charting/Visuals/RenderableSeries/StackedColumnRenderableSeries.d.ts +22 -0
- package/Charting/Visuals/RenderableSeries/StackedColumnRenderableSeries.js +38 -1
- package/Charting/Visuals/RenderableSeries/StackedMountainCollection.d.ts +2 -2
- package/Charting/Visuals/RenderableSeries/StackedMountainCollection.js +26 -45
- package/Charting/Visuals/RenderableSeries/StackedMountainRenderableSeries.d.ts +77 -18
- package/Charting/Visuals/RenderableSeries/StackedMountainRenderableSeries.js +139 -42
- package/Charting/Visuals/RenderableSeries/XyScatterRenderableSeries.d.ts +5 -0
- package/Charting/Visuals/RenderableSeries/XyScatterRenderableSeries.js +21 -1
- package/Charting/Visuals/RenderableSeries/constants.d.ts +7 -0
- package/Charting/Visuals/RenderableSeries/constants.js +7 -0
- package/Charting/Visuals/SciChartPieSurface/IPieSurfaceOptions.d.ts +25 -2
- package/Charting/Visuals/SciChartPieSurface/PieSegment/IPieSegment.d.ts +9 -1
- package/Charting/Visuals/SciChartPieSurface/PieSegment/PieSegment.d.ts +128 -2
- package/Charting/Visuals/SciChartPieSurface/PieSegment/PieSegment.js +202 -21
- package/Charting/Visuals/SciChartPieSurface/PieSegment/constants.d.ts +6 -1
- package/Charting/Visuals/SciChartPieSurface/PieSegment/constants.js +5 -0
- package/Charting/Visuals/SciChartPieSurface/SciChartPieSurface.d.ts +77 -3
- package/Charting/Visuals/SciChartPieSurface/SciChartPieSurface.js +373 -81
- package/Charting/Visuals/SciChartPieSurface/constants.d.ts +7 -1
- package/Charting/Visuals/SciChartPieSurface/constants.js +6 -0
- package/Charting/Visuals/SciChartSurface.d.ts +13 -2
- package/Charting/Visuals/SciChartSurface.js +39 -3
- package/Charting/Visuals/createMaster.js +17 -13
- package/Charting/Visuals/createSingle.js +5 -3
- package/Charting/Visuals/licenseManager2D.d.ts +6 -0
- package/Charting/Visuals/licenseManager2D.js +98 -9
- package/Charting/Visuals/licenseManager2dState.d.ts +11 -0
- package/Charting/Visuals/licenseManager2dState.js +37 -1
- package/Charting/Visuals/loader.js +4 -1
- package/Charting/Visuals/sciChartInitCommon.d.ts +2 -2
- package/Charting/Visuals/sciChartInitCommon.js +13 -9
- package/Charting3D/Visuals/Primitives/ScatterPointsSceneEntity.js +6 -2
- package/Charting3D/Visuals/SciChart3DRenderer.js +1 -1
- package/Charting3D/Visuals/SciChart3DSurface.d.ts +8 -3
- package/Charting3D/Visuals/SciChart3DSurface.js +12 -3
- package/Charting3D/Visuals/createMaster3d.js +20 -14
- package/Charting3D/Visuals/createSingle3d.js +3 -4
- package/Charting3D/Visuals/licenseManager3D.js +3 -1
- package/Core/BuildStamp.d.ts +1 -1
- package/Core/BuildStamp.js +2 -2
- package/Core/Telemetry.d.ts +7 -0
- package/Core/Telemetry.js +109 -0
- package/Core/storage/localStorageApi.d.ts +4 -0
- package/Core/storage/localStorageApi.js +12 -0
- package/README.md +49 -13
- package/_wasm/scichart.browser.js +1 -1
- package/_wasm/scichart2d.js +95 -95
- package/_wasm/scichart2d.wasm +0 -0
- package/_wasm/scichart3d.js +97 -97
- package/_wasm/scichart3d.wasm +0 -0
- package/package.json +1 -1
- package/types/AxisType.d.ts +5 -1
- package/types/AxisType.js +4 -0
- package/types/Color.d.ts +1 -0
- package/types/Color.js +1 -0
- package/types/DataFilterType.d.ts +1 -0
- package/types/DataFilterType.js +1 -0
- package/types/DataPointWidthMode.d.ts +13 -0
- package/types/DataPointWidthMode.js +17 -0
- package/types/ErrorDirection.d.ts +13 -0
- package/types/ErrorDirection.js +17 -0
- package/types/ErrorMode.d.ts +17 -0
- package/types/ErrorMode.js +21 -0
- package/types/LabelPlacement.d.ts +8 -0
- package/types/LabelPlacement.js +11 -1
- package/types/LabelProviderType.d.ts +5 -1
- package/types/LabelProviderType.js +4 -0
- package/types/SeriesType.d.ts +3 -1
- package/types/SeriesType.js +2 -0
- package/types/TSciChart.d.ts +8 -2
- package/types/TSciChart3D.d.ts +5 -2
- package/types/TSciChartSurfaceCanvases.d.ts +1 -0
- package/utils/date.d.ts +1 -0
- package/utils/date.js +15 -1
- package/utils/guid.d.ts +6 -0
- 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 {
|
|
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 {
|
|
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
|
|
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
|
-
|
|
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
|
}
|