UNPKG

scichart

Version:

Fast WebGL JavaScript Charting Library and Framework

84 lines (83 loc) 4.23 kB
/** * Enumeration constants to define the type of series, or chart type that a {@link BaseRenderableSeries} represents */ export declare enum ESeriesType { /** Type of {@link FastBandRenderableSeries} */ BandSeries = "BandSeries", /** Type of {@link PolarBandRenderableSeries} */ PolarBandSeries = "PolarBandSeries", /** Type of {@link SplineBandRenderableSeries} */ SplineBandSeries = "SplineBandSeries", /** Type of {@link FastBubbleRenderableSeries } */ BubbleSeries = "BubbleSeries", /** Type of {@link FastCandlestickRenderableSeries } */ CandlestickSeries = "CandlestickSeries", /** Type of {@link FastColumnRenderableSeries} */ ColumnSeries = "ColumnSeries", /** Type of {@link PolarColumnRenderableSeries} */ PolarColumnSeries = "PolarColumnSeries", /** Type of {@link FastImpulseRenderableSeries} */ ImpulseSeries = "ImpulseSeries", /** Type of {@link FastLineRenderableSeries} */ LineSeries = "LineSeries", /** Type of {@link PolarLineRenderableSeries} */ PolarLineSeries = "PolarLineSeries", /** Type of {@link LineSegmentRenderableSeries} */ LineSegmentSeries = "LineSegmentSeries", /** Type of {@link SplineLineRenderableSeries} */ SplineLineSeries = "SplineLineSeries", /** Type of {@link FastMountainRenderableSeries} */ MountainSeries = "MountainSeries", /** Type of {@link PolarMountainRenderableSeries} */ PolarMountainSeries = "PolarMountainSeries", /** Type of {@link SplineMountainRenderableSeries} */ SplineMountainSeries = "SplineMountainSeries", /** Type of {@link FastOhlcRenderableSeries} */ OhlcSeries = "OhlcSeries", /** Type of {@link StackedColumnRenderableSeries} */ StackedColumnSeries = "StackedColumnSeries", /** Type of {@link PolarStackedColumnRenderableSeries} */ PolarStackedColumnSeries = "PolarStackedColumnSeries", /** Type of {@link StackedMountainRenderableSeries} */ StackedMountainSeries = "StackedMountainSeries", /** Type of {@link PolarStackedMountainRenderableSeries} */ PolarStackedMountainSeries = "PolarStackedMountainSeries", /** Type of {@link SmoothStackedMountainRenderableSeries} */ SmoothStackedMountainSeries = "SmoothStackedMountainSeries", /** Type of {@link UniformContoursRenderableSeries} */ UniformContoursSeries = "UniformContoursSeries", /** Type of {@link UniformHeatmapRenderableSeries} */ UniformHeatmapSeries = "UniformHeatmapSeries", /** Type of {@link PolarUniformHeatmapRenderableSeries} */ PolarUniformHeatmapSeries = "PolarUniformHeatmapSeries", /** Type of {@link NonUniformHeatmapRenderableSeries} */ NonUniformHeatmapSeries = "NonUniformHeatmapSeries", /** Type of {@link StackedMountainCollection} */ StackedMountainCollection = "StackedMountainCollection", /** Type of {@link PolarStackedMountainCollection} */ PolarStackedMountainCollection = "PolarStackedMountainCollection", /** Type of {@link StackedColumnCollection} */ StackedColumnCollection = "StackedColumnCollection", /** Type of {@link PolarStackedColumnCollection} */ PolarStackedColumnCollection = "PolarStackedColumnCollection", /** Type of {@link XyScatterRenderableSeries} */ ScatterSeries = "ScatterSeries", /** Type of {@link PolarXyScatterRenderableSeries} */ PolarScatterSeries = "PolarScatterSeries", /** Type of {@link FastErrorBarsRenderableSeries} */ ErrorBarsSeries = "ErrorBarsSeries", /** Type of {@link FastTextRenderableSeries} */ TextSeries = "TextSeries", /** Type of {@link FastBoxRenderableSeries} */ RectangleSeries = "RectangleSeries", /** Type of {@link FastBoxPlotRenderableSeries} */ BoxPlotSeries = "BoxPlotSeries", /** Type of {@link TriangleRenderableSeries} */ TriangleSeries = "TriangleSeries", /** Type of {@link PolarTriangleRenderableSeries} */ PolarTriangleSeries = "PolarTriangleSeries", /** Type of {@link PolarTextRenderableSeries} */ PolarTextSeries = "PolarTextSeries", /** Custom series type */ Custom = "Custom" }