Type aliases
NumberArray
NumberArray: number [] | Float64Array
Defined in src/types/NumberArray.ts
RequiredOwnProps
RequiredOwnProps<Type, BaseType>: Required < Omit < Type , keyof BaseType > >
Defined in src/types/HelperTypes.ts
Type parameters
SuspendedInstance
Suspended
Instance: { id: string ; suspendCount: number ; suspendable: ISuspendable }
Defined in src/Charting/Visuals/UpdateSuspender.ts
Type declaration
id: string
suspendCount: number
SvgStringTemplate
SvgStringTemplate: ( x1: number , y1: number , x2: number , y2: number ) => string
Defined in src/Charting/Visuals/Annotations/OverviewCustomResizableAnnotation.ts
Type declaration
( x1: number , y1: number , x2: number , y2: number ) : string
Parameters
x1: number
y1: number
x2: number
y2: number
Returns string
TAdvancedTextProperties
Defined in src/types/TextStyle.ts
Type declaration
Optional rotation?: number
TAdvancedTextStyle
Defined in src/types/TextStyle.ts
TAnimationDefinition
Defined in src/Builder/buildSeries.ts
TAnnotationDefinition
Defined in src/Builder/buildAnnotations.ts
TArgb
TArgb: { blue: number ; green: number ; opacity: number ; red: number }
Defined in src/utils/parseColor.ts
Type declaration
blue: number
green: number
opacity: number
red: number
TAxisCubeState
TAxisCubeState: { xVisibleMax: number ; xVisibleMin: number ; xWorldDimension: number ; yVisibleMax: number ; yVisibleMin: number ; yWorldDimension: number ; zVisibleMax: number ; zVisibleMin: number ; zWorldDimension: number }
Defined in src/Charting3D/Visuals/Primitives/RenderableSeriesSceneEntityState.ts
Type declaration
xVisibleMax: number
xVisibleMin: number
xWorldDimension: number
yVisibleMax: number
yVisibleMin: number
yWorldDimension: number
zVisibleMax: number
zVisibleMin: number
zWorldDimension: number
TAxisDefinition
Defined in src/Builder/buildAxis.ts
TAxisTitleStyle
TAxis
TitleStyle: TTextStyle & { rotation?: number }
Defined in src/Charting/Visuals/Axis/AxisCore.ts
TAxisViewRects
TAxis
ViewRects: { axisRendererViewRect: Rect ; axisTitleRendererViewRect: Rect }
Defined in src/Charting/LayoutManager/AxisLayoutHelpers.ts
Type declaration
axisRendererViewRect: Rect
axisTitleRendererViewRect: Rect
TBorder
TBorder: { border?: number ; borderBottom?: number ; borderLeft?: number ; borderRight?: number ; borderTop?: number ; color?: string }
Defined in src/types/TBorder.ts
Type declaration
Optional border?: number
Optional borderBottom?: number
Optional borderLeft?: number
Optional borderRight?: number
Optional borderTop?: number
Optional color?: string
TCachedLabelStyle
TCached
LabelStyle: TTextStyle & { extras?: string ; providerId: string ; rotation?: number }
Defined in src/Charting/Visuals/Axis/LabelProvider/LabelCache.ts
TCameraState
TCameraState: { height?: number ; pitch?: number ; radius?: number ; width?: number ; yaw?: number }
Defined in src/Charting3D/ChartModifiers/ResetCamera3DModifier.ts
Type declaration
Optional height?: number
Optional pitch?: number
Optional radius?: number
Optional width?: number
Optional yaw?: number
TCategoryCoordCalc
Defined in src/Charting/Visuals/Axis/CategoryAxisBase.ts
TCellSizeMapper
TCellSizeMapper: ( index: number ) => number
Defined in src/Charting/Model/NonUniformHeatmapDataSeries.ts
Type declaration
Parameters
Returns number
TChartTitleStyle
Defined in src/types/TextStyle.ts
TCheckedChangedArgs
Defined in src/Charting/ChartModifiers/LegendModifier.ts
TCommonTextStyle
Defined in src/types/TextStyle.ts
TContourLineStyle
TContourLineStyle: { color?: string ; strokeThickness?: number }
Defined in src/Charting/Visuals/RenderableSeries/UniformContoursRenderableSeries.ts
Type declaration
Optional color?: string
Optional strokeThickness?: number
TCoord
Defined in src/utils/tooltip.ts
TCursorTooltipDataTemplate
TCursor
TooltipDataTemplate: ( seriesInfos: SeriesInfo [] , tooltipTitle: string ) => string []
Defined in src/Charting/ChartModifiers/CursorModifier.ts
Type declaration
( seriesInfos: SeriesInfo [] , tooltipTitle: string ) : string []
Parameters
Returns string []
TCursorTooltipSvgTemplate
Defined in src/Charting/ChartModifiers/CursorModifier.ts
Type declaration
Parameters
Returns string
TDataLabel
TData
Label: { color?: number ; dataX: number ; dataY: number ; position: Point ; rect: Rect ; text: string }
Defined in src/Charting/Visuals/RenderableSeries/DataLabels/BaseDataLabelProvider.ts
Type declaration
Optional color?: number
dataX: number
dataY: number
text: string
TDataLabelProviderDefinition
Defined in src/Builder/buildSeries.ts
TDataLabelStyle
TData
LabelStyle: { fontFamily?: string ; fontSize?: number ; lineSpacing?: number ; multiLineAlignment?: EMultiLineAlignment ; padding?: Thickness }
Defined in src/types/TDataLabelStyle.ts
Type declaration
Optional fontFamily?: string
Optional fontSize?: number
Optional lineSpacing?: number
Optional padding?: Thickness
TDataSeriesDefinition
Defined in src/Builder/buildDataSeries.ts
TDpiChangedEventArgs
TDpiChangedEventArgs: { newValue: number ; oldValue: number }
Defined in src/Charting/Visuals/TextureManager/DpiHelper.ts
Type declaration
newValue: number
oldValue: number
TDrawFunction
TDrawFunction: ( ) => void
Defined in src/Charting/Drawing/WebGlRenderContext2D.ts
TEasingFn
TEasingFn: ( time: number ) => number
Defined in src/Core/Animations/EasingFunctions.ts
Type declaration
Parameters
Returns number
TEffectDefinition
Defined in src/Builder/buildSeries.ts
TElement
Defined in src/Core/Guard.ts
TFilterDefinition
Defined in src/Builder/buildDataSeries.ts
TFormatLabelFn
TFormatLabelFn: ( dataValue: number ) => string
Defined in src/Charting/Visuals/Axis/LabelProvider/LabelProvider.ts
Type declaration
( dataValue: number ) : string
Parameters
Returns string
TGradientStop
TGradientStop: { color: string ; offset: number }
Defined in src/types/TGradientStop.ts
Type declaration
color: string
offset: number
TGridLineStyle
TGridLineStyle: { color?: string ; strokeDashArray?: number [] ; strokeThickness?: number }
Defined in src/Charting/Visuals/Axis/AxisCore.ts
Type declaration
Optional color?: string
Optional strokeDashArray?: number []
Optional strokeThickness?: number
THeatmapLegend
Defined in src/Charting/Visuals/HeatmapLegend.ts
THlcSeriesData
THlc
SeriesData: { closeDataId?: number | string ; highDataId?: number | string ; lowDataId?: number | string ; xDataId?: number | string } & IHlcDataSeriesOptions & { filter?: TFilterDefinition }
Defined in src/Builder/buildDataSeries.ts
THoverCallback
Defined in src/Charting/ChartModifiers/PointerEventsMediatorModifier.ts
Type parameters
THoveredChangedCallback
Defined in src/Charting/ChartModifiers/SeriesSelectionModifier.ts
TInnerLayoutStrategyDefinition
Defined in src/Charting/LayoutManager/LayoutManager.ts
Type declaration
Optional customType?: string
TLabelProviderDefinition
Defined in src/Builder/buildAxis.ts
TLayoutAxisPartsWithStrategyFunc
TLayout
AxisPartsWithStrategyFunc: ( axisRendererWidth: number , axisRendererHeight: number , axisTitleRendererWidth: number , axisTitleRendererHeight: number , axisRect: Rect , border: TBorder ) => TAxisViewRects
Defined in src/Charting/LayoutManager/AxisLayoutHelpers.ts
Type declaration
( axisRendererWidth: number , axisRendererHeight: number , axisTitleRendererWidth: number , axisTitleRendererHeight: number , axisRect: Rect , border: TBorder ) : TAxisViewRects
Parameters
axisRendererWidth: number
axisRendererHeight: number
axisTitleRendererWidth: number
axisTitleRendererHeight: number
axisRect: Rect
TLayoutManagerDefinition
Defined in src/Builder/buildSurface.ts
TLegendItem
TLegend
Item: { checked: boolean ; color: string ; gradient?: GradientParams ; id: string ; name: string ; showMarker?: boolean }
Defined in src/Charting/Visuals/Legend/SciChartLegendBase.ts
Type declaration
checked: boolean
color: string
id: string
name: string
Optional showMarker?: boolean
TLinearColorMap
Defined in src/types/TLinearColorMap.ts
Type declaration
Maximum: number
Minimum: number
TModifierDefinition
Defined in src/Builder/buildModifiers.ts
TModifierKeys
TModifierKeys: { altKey: boolean ; ctrlKey: boolean ; shiftKey: boolean }
Defined in src/Charting/ChartModifiers/DataPointSelectionModifier.ts
Type declaration
altKey: boolean
ctrlKey: boolean
shiftKey: boolean
TModifierMouseArgsParams
TModifier
MouseArgsParams: { altKey?: boolean ; button?: number ; ctrlKey?: boolean ; isActiveSubChartEvent?: boolean ; isMaster?: boolean ; modifierGroup?: string ; mousePoint?: Point ; mouseWheelDelta?: number ; nativeEvent?: MouseEvent ; pointerId?: number ; pointerType?: string ; shiftKey?: boolean ; target?: Element }
Defined in src/Charting/ChartModifiers/ModifierMouseArgs.ts
Type declaration
Optional altKey?: boolean
Optional button?: number
Optional ctrlKey?: boolean
Optional isActiveSubChartEvent?: boolean
Optional isMaster?: boolean
Optional modifierGroup?: string
Optional mousePoint?: Point
Optional mouseWheelDelta?: number
Optional nativeEvent?: MouseEvent
Optional pointerId?: number
Optional pointerType?: string
Optional shiftKey?: boolean
Optional target?: Element
TNativeCache
TNative
Cache: { keyCache: Map < string , FontKey > ; rect: SCRTRectVertex ; textBounds: TSRTextBounds ; vecColorVertex: VectorColorVertex ; vecRects: VectorRectVertex ; vector4: TSRVector4 ; vertex: SCRTColorVertex }
Defined in src/Charting/Visuals/Helpers/NativeObject.ts
Type declaration
keyCache: Map < string , FontKey >
rect: SCRTRectVertex
textBounds: TSRTextBounds
vecColorVertex: VectorColorVertex
vecRects: VectorRectVertex
vector4: TSRVector4
vertex: SCRTColorVertex
TNativeTextStyle
Defined in src/types/TextStyle.ts
TOhlcSeriesData
TOhlc
SeriesData: { closeDataId?: number | string ; highDataId?: number | string ; lowDataId?: number | string ; openDataId?: number | string ; xDataId?: number | string } & IOhlcDataSeriesOptions & { filter?: TFilterDefinition }
Defined in src/Builder/buildDataSeries.ts
TOuterLayoutStrategyDefinition
TOuter
LayoutStrategyDefinition: { customType?: string ; options?: any ; type: ELayoutStrategyType }
Defined in src/Charting/LayoutManager/LayoutManager.ts
Type declaration
Optional customType?: string
Optional options?: any
TPaletteProviderDefinition
Defined in src/Builder/buildSeries.ts
TPalettingState
TPalettingState: { gradientPaletting: boolean ; lastCount?: number ; lastResamplingHash?: number ; lastStartIndex?: number ; originalBrushColor?: number ; originalPenColor?: number ; originalPenGradient?: boolean ; paletteStartIndex?: number ; paletteTextureCache?: PaletteCache ; palettedColors: UIntVector ; palettedColorsHashCode: number ; requiresUpdate: boolean }
Defined in src/Charting/Visuals/RenderableSeries/DrawingProviders/BaseSeriesDrawingProvider.ts
Type declaration
gradientPaletting: boolean
Optional lastCount?: number
Optional lastResamplingHash?: number
Optional lastStartIndex?: number
Optional originalBrushColor?: number
Optional originalPenColor?: number
Optional originalPenGradient?: boolean
Optional paletteStartIndex?: number
Optional paletteTextureCache?: PaletteCache
palettedColors: UIntVector
palettedColorsHashCode: number
requiresUpdate: boolean
TPerformanceDetailType
TPerformanceDetailType: { contextId?: string ; relatedId?: string }
Defined in src/utils/perfomance.ts
Type declaration
Optional contextId?: string
Optional relatedId?: string
TPointMarkerArgb
TPointMarkerArgb: { fill: number ; stroke: number }
Defined in src/Charting/Model/IPaletteProvider.ts
Type declaration
fill: number
stroke: number
TPointMarkerDefinition
Defined in src/Builder/buildSeries.ts
TPositionPoperties
TPosition
Poperties: { coordPropertyName: TCoord ; shiftPropertyName: TShift ; sizePropertyName: TSize }
Defined in src/utils/tooltip.ts
TPriceBar
TPriceBar: {}
Defined in src/utils/randomPricesDataSource.ts
TRenderLayers
TRenderLayers: {}
Defined in src/Charting/Drawing/WebGlRenderContext2D.ts
TRolloverLegendSvgTemplate
Defined in src/Charting/ChartModifiers/RolloverModifier.ts
Type declaration
Parameters
Returns string
TRolloverTooltipDataTemplate
TRollover
TooltipDataTemplate: ( seriesInfo: SeriesInfo , tooltipTitle: string , tooltipLabelX: string , tooltipLabelY: string ) => string []
Defined in src/Charting/ChartModifiers/RolloverModifier.ts
Type declaration
( seriesInfo: SeriesInfo , tooltipTitle: string , tooltipLabelX: string , tooltipLabelY: string ) : string []
Parameters
tooltipTitle: string
tooltipLabelX: string
tooltipLabelY: string
Returns string []
TRolloverTooltipSvgTemplate
Defined in src/Charting/Visuals/RenderableSeries/RolloverModifier/RolloverModifierRenderableSeriesProps.ts
Type declaration
Parameters
Returns string
TSciChart
TSciChart: TWasmContext
Defined in src/Charting/Visuals/SciChartSurface.ts
TSciChart3D
TSciChart3D: TWasmContext
Defined in src/Charting3D/Visuals/SciChart3DSurface.ts
TSciChartConfig
Defined in src/Charting/Visuals/SciChartSurfaceBase.ts
Type declaration
Optional dataUrl?: string
Optional wasmUrl?: string
TSciChartDestination
TSci
ChartDestination: { canvasElementId: string ; height: number ; sciChartSurface: ISciChartSurfaceBase ; width: number }
Defined in src/Charting/Visuals/SciChartSurfaceBase.ts
Type declaration
canvasElementId: string
height: number
width: number
TSciChartSurfaceCanvases
TSciChartSurfaceCanvases: { aspect?: number ; disableAspect?: boolean ; domBackgroundSvgContainer?: SVGSVGElement ; domCanvas2D?: HTMLCanvasElement ; domCanvasWebGL?: HTMLCanvasElement ; domChartRoot?: HTMLDivElement ; domDivContainer?: HTMLDivElement ; domSeriesBackground?: HTMLDivElement ; domSvgAdornerLayer?: SVGSVGElement ; domSvgContainer?: SVGSVGElement }
Defined in src/types/TSciChartSurfaceCanvases.ts
Type declaration
Optional aspect?: number
Optional disableAspect?: boolean
Optional domBackgroundSvgContainer?: SVGSVGElement
Optional domCanvas2D?: HTMLCanvasElement
Optional domCanvasWebGL?: HTMLCanvasElement
Optional domChartRoot?: HTMLDivElement
Optional domDivContainer?: HTMLDivElement
Optional domSeriesBackground?: HTMLDivElement
Optional domSvgAdornerLayer?: SVGSVGElement
Optional domSvgContainer?: SVGSVGElement
TSelectionChangedCallback
Defined in src/Charting/ChartModifiers/SeriesSelectionModifier.ts
TSeriesDataDefinition
Defined in src/Builder/buildDataSeries.ts
TSeriesDefinition
Defined in src/Builder/buildSeries.ts
TSeriesHoverChangedCallback
TSeries
HoverChangedCallback: ( sourceSeries: IRenderableSeries , isHovered: boolean ) => void
Defined in src/Charting/Visuals/RenderableSeries/IBaseRenderableSeriesOptions.ts
TSeriesRenderPassInfo
Defined in src/Charting/Services/RenderPassInfo.ts
TSeriesSelectionChangedCallback
TSeries
SelectionChangedCallback: ( sourceSeries: IRenderableSeries , isSelected: boolean ) => void
Defined in src/Charting/Visuals/RenderableSeries/IBaseRenderableSeriesOptions.ts
TSeriesVisibleChangedCallback
TSeries
VisibleChangedCallback: ( sourceSeries: IRenderableSeries , isVisible: boolean ) => void
Defined in src/Charting/Visuals/RenderableSeries/IBaseRenderableSeriesOptions.ts
TSharedDataDefinition
TSharedDataDefinition: Record < number | string , number [] >
Defined in src/Builder/buildDataSeries.ts
TShift
Defined in src/utils/tooltip.ts
TSize
Defined in src/utils/tooltip.ts
TStackedAxisLength
TStackedAxisLength: number | string
Defined in src/types/TStackedAxisLength.ts
TSurfaceDefinition
Defined in src/Builder/chartBuilder.ts
TTargetsSelector
Defined in src/Charting/ChartModifiers/PointerEventsMediatorModifier.ts
Type parameters
Type declaration
Parameters
Returns TEntityType []
TTextStyle
Defined in src/Charting/Visuals/Axis/AxisCore.ts
Type declaration
Optional color?: string
Optional fontFamily?: string
Optional fontSize?: number
Optional fontStyle?: string
Optional fontWeight?: string
Optional padding?: Thickness
TTextStyleBase
TText
StyleBase: { color?: string ; fontFamily?: string ; fontSize?: number ; lineSpacing?: number ; padding?: Thickness }
Defined in src/types/TextStyle.ts
Type declaration
Optional color?: string
Optional fontFamily?: string
Optional fontSize?: number
Optional lineSpacing?: number
Optional padding?: Thickness
TTextStyleBase3D
TTextStyleBase3D: { color?: string ; fontSize?: number }
Defined in src/types/TextStyle3D.ts
Type declaration
Optional color?: string
Optional fontSize?: number
TTextureTextStyle
TTexture
TextStyle: TTextStyleBase & { fontStyle?: string ; fontWeight?: string ; useNativeText?: false }
Defined in src/types/TextStyle.ts
TTickLineStyle
TTickLineStyle: { color?: string ; strokeThickness?: number ; tickSize?: number }
Defined in src/Charting/Visuals/Axis/AxisCore.ts
Type declaration
Optional color?: string
Optional strokeThickness?: number
Optional tickSize?: number
TTickObject
TTickObject: { majorTickCoords: number [] ; majorTickLabels: string [] ; majorTicks: number [] ; minorTickCoords: number [] ; minorTicks: number [] }
Defined in src/Charting/Visuals/Axis/AxisBase2D.ts
Type declaration
majorTickCoords: number []
majorTickLabels: string []
majorTicks: number []
minorTickCoords: number []
minorTicks: number []
TTooltip3DDataTemplate
Defined in src/Charting3D/Visuals/Annotations/TooltipSvgAnnotation3D.ts
Type declaration
Parameters
Returns string []
TTooltip3DSvgTemplate
Defined in src/Charting3D/Visuals/Annotations/TooltipSvgAnnotation3D.ts
Type declaration
Parameters
Returns string
TWebAssemblyChart
Defined in src/Charting/Visuals/SciChartSurface.ts
TWebAssemblyChart3D
Defined in src/Charting3D/Visuals/SciChart3DSurface.ts
TXySeriesData
Defined in src/Builder/buildDataSeries.ts
TXyTextSeriesData
Defined in src/Builder/buildDataSeries.ts
TXyySeriesData
Defined in src/Builder/buildDataSeries.ts
TXyzSeriesData
Defined in src/Builder/buildDataSeries.ts
TZoomExtentsCallback
Defined in src/Charting/ChartModifiers/ZoomExtentsModifier.ts
Type declaration
Parameters
Returns boolean
TfilterFunction
TfilterFunction: ( index: number , y: number ) => number
Defined in src/Charting/Model/Filters/XyCustomFilter.ts
Type declaration
( index: number , y: number ) : number
Parameters
Returns number
Variables
Const AUTO_COLOR
AUTO_COLOR: "auto" = "auto"
Defined in src/Charting/Themes/IThemeProvider.ts
Const DebugForDpi
DebugForDpi: boolean = false
Defined in src/Charting/Visuals/SciChartSurfaceBase.ts
Const FIFTY_DAYS
FIFTY_DAYS: number = 60 * 60 * 24 * 50
Defined in src/Charting/Visuals/Axis/LabelProvider/SmartDateLabelProvider.ts
Const FIVE_DAYS
FIVE_DAYS: number = 60 * 60 * 24 * 5
Defined in src/Charting/Visuals/Axis/LabelProvider/SmartDateLabelProvider.ts
Const MIN_LOG_AXIS_VALUE
MIN_LOG_AXIS_VALUE: 1e-10 = 1e-10
Defined in src/Charting/Visuals/Axis/LogarithmicAxis.ts
Const MIN_SERIES_AREA_SIZE
MIN_SERIES_AREA_SIZE: 10 = 10
Defined in src/Charting/LayoutManager/LayoutManager.ts
Const ONE_HOUR
ONE_HOUR: number = 60 * 60
Defined in src/Charting/Visuals/Axis/LabelProvider/SmartDateLabelProvider.ts
Const TEN_SECONDS
TEN_SECONDS: 10 = 10
Defined in src/Charting/Visuals/Axis/LabelProvider/SmartDateLabelProvider.ts
Const buildStamp
buildStamp: "2024-10-02T00:00:00" = "2024-10-02T00:00:00"
Defined in src/Core/BuildStamp.ts
Let cleanupWasmContext
cleanupWasmContext: ( ) => void
Defined in src/Charting/Visuals/createMaster.ts
Defined in src/Charting3D/Visuals/createMaster3d.ts
Const constructorMap
constructorMap: Map < string , { func: Function ; wasm?: boolean } > = new Map<string,{ wasm?: boolean; func: Function }>()
Defined in src/Builder/classFactory.ts
Const defaultSelectionAnnotationSvgString
defaultSelectionAnnotationSvgString: "<svg width="50" height="50" preserveAspectRatio="none" xmlns="http://www.w3.org/2000/svg"><rect width="100%" height="100%" style="fill:transparent"></rect></svg>" = `<svg width="50" height="50" preserveAspectRatio="none" xmlns="http://www.w3.org/2000/svg"><rect width="100%" height="100%" style="fill:transparent"></rect></svg>`
Defined in src/Charting/ChartModifiers/OverviewRangeSelectionModifier.ts
Const defaultUnSelectedAnnotationSvgString
defaultUnSelectedAnnotationSvgString: "<svg width="50" height="50" preserveAspectRatio="none" xmlns="http://www.w3.org/2000/svg"><rect width="100%" height="100%" style="fill:black"></rect></svg>" = `<svg width="50" height="50" preserveAspectRatio="none" xmlns="http://www.w3.org/2000/svg"><rect width="100%" height="100%" style="fill:black"></rect></svg>`
Defined in src/Charting/ChartModifiers/OverviewRangeSelectionModifier.ts
Let devCount
devCount: number = 1
Defined in src/Charting/Visuals/licenseManager2dState.ts
Let hasSent
hasSent: boolean = false
Defined in src/Core/Telemetry.ts
Let isDev
isDev: boolean = false
Defined in src/Charting/Visuals/licenseManager2dState.ts
Let isStorageAvailable
isStorageAvailable: boolean = undefined
Defined in src/Core/storage/localStorageApi.ts
Const labelCacheByTextAndStyle
label
CacheByTextAndStyle: Map < string , LabelInfo > = new Map<string, LabelInfo>()
Defined in src/Charting/Visuals/Axis/LabelProvider/LabelCache.ts
Let lastStyleId
lastStyleId: number = 0
Defined in src/Charting/Visuals/Axis/LabelProvider/LabelCache.ts
Const libraryVersion
libraryVersion: "3.5.0000" = "3.5.0000"
Defined in src/Core/BuildStamp.ts
Let licenseType
licenseType: LicenseType = LicenseType.NoLicense
Defined in src/Charting/Visuals/licenseManager2dState.ts
Const loaderCss
loaderCss: ".scichart_loader {display: inline-block;position: relative;width: 80px;height: 80px;top: 50%;transform: translateY(-50%);}.scichart_loader div {animation: scichart_loader 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;transform-origin: 40px 40px;}.scichart_loader div span {display: block;position: absolute;width: 7px;height: 7px;border-radius: 50%;margin: -4px 0 0 -4px;}.scichart_loader div:nth-child(1) {animation-delay: -0.036s;}.scichart_loader div:nth-child(1) span {top: 63px;left: 63px;}.scichart_loader div:nth-child(2) {animation-delay: -0.072s;}.scichart_loader div:nth-child(2) span {top: 68px;left: 56px;}.scichart_loader div:nth-child(3) {animation-delay: -0.108s;}.scichart_loader div:nth-child(3) span {top: 71px;left: 48px;}.scichart_loader div:nth-child(4) {animation-delay: -0.144s;}.scichart_loader div:nth-child(4) span {top: 72px;left: 40px;}.scichart_loader div:nth-child(5) {animation-delay: -0.18s;}.scichart_loader div:nth-child(5) span {top: 71px;left: 32px;}.scichart_loader div:nth-child(6) {animation-delay: -0.216s;}.scichart_loader div:nth-child(6) span {top: 68px;left: 24px;}.scichart_loader div:nth-child(7) {animation-delay: -0.252s;}.scichart_loader div:nth-child(7) span {top: 63px;left: 17px;}.scichart_loader div:nth-child(8) {animation-delay: -0.288s;}.scichart_loader div:nth-child(8) span {top: 56px;left: 12px;}@keyframes scichart_loader {0% {transform: rotate(0deg);}100% {transform: rotate(360deg);}}" = `.scichart_loader {display: inline-block;position: relative;width: 80px;height: 80px;top: 50%;transform: translateY(-50%);}.scichart_loader div {animation: scichart_loader 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;transform-origin: 40px 40px;}.scichart_loader div span {display: block;position: absolute;width: 7px;height: 7px;border-radius: 50%;margin: -4px 0 0 -4px;}.scichart_loader div:nth-child(1) {animation-delay: -0.036s;}.scichart_loader div:nth-child(1) span {top: 63px;left: 63px;}.scichart_loader div:nth-child(2) {animation-delay: -0.072s;}.scichart_loader div:nth-child(2) span {top: 68px;left: 56px;}.scichart_loader div:nth-child(3) {animation-delay: -0.108s;}.scichart_loader div:nth-child(3) span {top: 71px;left: 48px;}.scichart_loader div:nth-child(4) {animation-delay: -0.144s;}.scichart_loader div:nth-child(4) span {top: 72px;left: 40px;}.scichart_loader div:nth-child(5) {animation-delay: -0.18s;}.scichart_loader div:nth-child(5) span {top: 71px;left: 32px;}.scichart_loader div:nth-child(6) {animation-delay: -0.216s;}.scichart_loader div:nth-child(6) span {top: 68px;left: 24px;}.scichart_loader div:nth-child(7) {animation-delay: -0.252s;}.scichart_loader div:nth-child(7) span {top: 63px;left: 17px;}.scichart_loader div:nth-child(8) {animation-delay: -0.288s;}.scichart_loader div:nth-child(8) span {top: 56px;left: 12px;}@keyframes scichart_loader {0% {transform: rotate(0deg);}100% {transform: rotate(360deg);}}`
Defined in src/Charting/Visuals/loader.ts
Let maxSize
maxSize: number = 200
Defined in src/Charting/Visuals/Axis/LabelProvider/LabelCache.ts
Let minAge
minAge: number = 1000 * 60
Defined in src/Charting/Visuals/Axis/LabelProvider/LabelCache.ts
Const objectCache
object
Cache: Map < string , TNativeCache > = new Map<string, TNativeCache>()
Defined in src/Charting/Visuals/Helpers/NativeObject.ts
Let orderId
orderId: string = ""
Defined in src/Charting/Visuals/licenseManager2dState.ts
Const precision
precision: 100 = 100
Defined in src/Charting/Visuals/RenderableSeries/DrawingProviders/NonUniformHeatmapDrawingProvider.ts
Let productCode
productCode: string = ""
Defined in src/Charting/Visuals/licenseManager2dState.ts
Let rect
rect: SCRTRectVertex
Defined in src/Charting/Visuals/Helpers/createNativeRect.ts
Let result
result: boolean
Defined in src/Core/BuildStamp.ts
Const sciChartConfig
Defined in src/Charting/Visuals/SciChartSurface.ts
Const sciChartConfig3D
Defined in src/Charting3D/Visuals/SciChart3DSurface.ts
Const sessionTime
sessionTime: number = 60 * 60 * 1000
Defined in src/Core/Telemetry.ts
Const styleCache
Defined in src/Charting/Visuals/Axis/LabelProvider/LabelCache.ts
Const superScript_map
superScript_map: string [] = ["\u2070","\u00B9","\u00B2","\u00B3","\u2074","\u2075","\u2076","\u2077","\u2078","\u2079"]
Defined in src/utils/number.ts
Let telemetryEnabled
telemetryEnabled: boolean = false
Defined in src/Charting/Visuals/licenseManager2dState.ts
Copies own properties of an interface or copies all of its props if base type is not provided. Makes all of the props required.