igniteui-angular-core 20.0.1 → 20.0.2-beta.1
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/bundles/igniteui-angular-core.umd.js +16013 -8806
- package/bundles/igniteui-angular-core.umd.min.js +2 -2
- package/esm2015/lib/AsyncDataSourcePageRequest.js +14 -7
- package/esm2015/lib/AsyncVirtualDataSourceProviderWorker.js +17 -16
- package/esm2015/lib/AsyncVirtualDataTaskCompletionSource.js +33 -0
- package/esm2015/lib/AxisDescription.js +420 -196
- package/esm2015/lib/AxisDescriptionMetadata.js +32 -0
- package/esm2015/lib/AzureMapsMapImageryDescription.js +71 -0
- package/esm2015/lib/AzureMapsMapImageryDescriptionMetadata.js +45 -0
- package/esm2015/lib/AzureMapsMapImageryDescriptionModule.js +20 -0
- package/esm2015/lib/AzureMapsTileSource.js +112 -0
- package/esm2015/lib/BaseGenericDataSource.js +85 -0
- package/esm2015/lib/BaseGenericDataSourceDescription.js +58 -0
- package/esm2015/lib/BaseGenericDataSourceDescriptionMetadata.js +38 -0
- package/esm2015/lib/BaseVirtualDataProvider.js +398 -0
- package/esm2015/lib/CanvasViewRenderer.js +11 -6
- package/esm2015/lib/CategoryAngleAxisDescription.js +21 -21
- package/esm2015/lib/CategoryAxisBaseDescription.js +24 -24
- package/esm2015/lib/CategoryChartDescription.js +130 -130
- package/esm2015/lib/CategoryDateTimeXAxisDescription.js +24 -24
- package/esm2015/lib/CategoryHighlightLayerDescriptionMetadata.js +1 -0
- package/esm2015/lib/CategoryToolTipLayerDescription.js +27 -3
- package/esm2015/lib/CategoryToolTipLayerDescriptionMetadata.js +4 -0
- package/esm2015/lib/CategoryXAxisDescription.js +49 -33
- package/esm2015/lib/CategoryXAxisDescriptionMetadata.js +2 -0
- package/esm2015/lib/CategoryYAxisDescription.js +49 -33
- package/esm2015/lib/CategoryYAxisDescriptionMetadata.js +2 -0
- package/esm2015/lib/CellInfoDescription.js +321 -201
- package/esm2015/lib/CellInfoDescriptionMetadata.js +16 -0
- package/esm2015/lib/ChartMouseEventArgsDescription.js +17 -9
- package/esm2015/lib/ChartResizeIdleEventArgsDescription.js +26 -0
- package/esm2015/lib/ChartResizeIdleEventArgsDescriptionMetadata.js +36 -0
- package/esm2015/lib/CodeGeneratingComponentRendererCodeEmitter_combined.js +254 -254
- package/esm2015/lib/ColumnGroupDescriptionDescriptionMetadata.js +2 -2
- package/esm2015/lib/ColumnSummaryDescriptionDescriptionMetadata.js +2 -2
- package/esm2015/lib/ComboBoxColumnDescription.js +20 -12
- package/esm2015/lib/ComboBoxColumnDescriptionMetadata.js +2 -1
- package/esm2015/lib/ComponentRendererAdapter.js +5 -3
- package/esm2015/lib/ComponentRendererMethodHelperBuilder_combined.js +444 -167
- package/esm2015/lib/ComponentRenderer_combined.js +673 -565
- package/esm2015/lib/CustomLocalDataSourceDescription.js +26 -0
- package/esm2015/lib/CustomLocalDataSourceDescriptionMetadata.js +36 -0
- package/esm2015/lib/CustomLocalDataSourceDescriptionModule.js +20 -0
- package/esm2015/lib/DataAnnotationAxisLayerDescriptionMetadata.js +1 -0
- package/esm2015/lib/DataChartDashboardTileDescriptionModule.js +2 -0
- package/esm2015/lib/DataChartDescription.js +99 -99
- package/esm2015/lib/DataChartMouseButtonEventArgsDescription.js +23 -15
- package/esm2015/lib/DataGridCellEventArgsDescriptionMetadata_combined.js +3 -1
- package/esm2015/lib/DataGridColumnDescription.js +229 -109
- package/esm2015/lib/DataGridColumnDescriptionMetadata.js +16 -0
- package/esm2015/lib/DataGridDescription.js +623 -607
- package/esm2015/lib/DataLegendDescription.js +414 -382
- package/esm2015/lib/DataLegendDescriptionMetadata.js +4 -0
- package/esm2015/lib/DataPieBaseChartDescription.js +152 -112
- package/esm2015/lib/DataPieBaseChartDescriptionMetadata.js +9 -4
- package/esm2015/lib/DataPieChartDescription.js +36 -36
- package/esm2015/lib/DataPieChartDescriptionModule.js +2 -0
- package/esm2015/lib/DataSourceGroupDescription.js +52 -0
- package/esm2015/lib/DataSourceGroupDescriptionCollection.js +84 -0
- package/esm2015/lib/DataSourceGroupDescriptionDescription.js +25 -0
- package/esm2015/lib/DataSourceGroupDescriptionDescriptionMetadata.js +39 -0
- package/esm2015/lib/DataSourceGroupDescriptionDescriptionModule.js +22 -0
- package/esm2015/lib/DataSourceSortDescription.js +61 -0
- package/esm2015/lib/DataSourceSortDescriptionCollection.js +96 -0
- package/esm2015/lib/DataSourceSortDescriptionDescription.js +44 -0
- package/esm2015/lib/DataSourceSortDescriptionDescriptionMetadata.js +40 -0
- package/esm2015/lib/DataSourceSortDescriptionDescriptionModule.js +20 -0
- package/esm2015/lib/DataSourceSummaryDescription.js +123 -0
- package/esm2015/lib/DataSourceSummaryDescriptionCollection.js +102 -0
- package/esm2015/lib/DataSourceSummaryDescriptionDescription.js +68 -0
- package/esm2015/lib/DataSourceSummaryDescriptionDescriptionMetadata.js +45 -0
- package/esm2015/lib/DataSourceSummaryDescriptionDescriptionModule.js +20 -0
- package/esm2015/lib/DataToolTipLayerDescription.js +251 -227
- package/esm2015/lib/DataToolTipLayerDescriptionMetadata.js +4 -0
- package/esm2015/lib/DateTimeCellInfoDescription.js +18 -18
- package/esm2015/lib/DateTimeCellInfoDescriptionMetadata.js +1 -1
- package/esm2015/lib/DateTimeColumnDescription.js +44 -36
- package/esm2015/lib/DateTimeColumnDescriptionMetadata.js +4 -3
- package/esm2015/lib/DescriptionSerializer.js +1 -1
- package/esm2015/lib/DomainChartDescription.js +620 -588
- package/esm2015/lib/DomainChartDescriptionMetadata.js +6 -2
- package/esm2015/lib/DomainChartSeriesPointerEventArgsDescription.js +17 -9
- package/esm2015/lib/DomainChartSeriesPointerEventArgsDescriptionMetadata.js +1 -0
- package/esm2015/lib/EditorCellInfoDescription.js +30 -30
- package/esm2015/lib/FilterCellInfoDescription.js +36 -36
- package/esm2015/lib/FilterExpressionDescription.js +64 -0
- package/esm2015/lib/FilterExpressionDescriptionMetadata.js +8 -0
- package/esm2015/lib/FinancialChartDescription.js +176 -176
- package/esm2015/lib/FontRegistry.js +47 -0
- package/esm2015/lib/FunctionFilterExpressionDescription.js +30 -6
- package/esm2015/lib/FunctionFilterExpressionDescriptionMetadata.js +3 -0
- package/esm2015/lib/GenericDataSourcePage.js +82 -0
- package/esm2015/lib/GenericDataSourceSchemaPropertyType.js +37 -0
- package/esm2015/lib/GenericInternalVirtualDataProvider.js +247 -0
- package/esm2015/lib/GenericInternalVirtualDataSource.js +125 -0
- package/esm2015/lib/GenericPageResponse.js +37 -0
- package/esm2015/lib/GenericSectionInformation.js +55 -0
- package/esm2015/lib/GenericSummaryResult.js +62 -0
- package/esm2015/lib/GenericVirtualDataProviderWorker.js +156 -0
- package/esm2015/lib/GenericVirtualDataProviderWorkerSettings.js +62 -0
- package/esm2015/lib/GenericVirtualDataSource.js +178 -0
- package/esm2015/lib/GenericVirtualDataSourceDescription.js +31 -0
- package/esm2015/lib/GenericVirtualDataSourceDescriptionMetadata.js +41 -0
- package/esm2015/lib/GenericVirtualDataSourceDescriptionModule.js +20 -0
- package/esm2015/lib/GeographicMapImageryDescription_combined.js +41 -41
- package/esm2015/lib/GeometryUtil.js +18 -3
- package/esm2015/lib/GridConditionalStyleFontInfoDescription.js +58 -0
- package/esm2015/lib/GridConditionalStyleFontInfoDescriptionMetadata.js +40 -0
- package/esm2015/lib/GridConditionalStyleFontInfoDescriptionModule.js +20 -0
- package/esm2015/lib/HierarchicalRingSeriesDescription.js +3 -3
- package/esm2015/lib/IRenderer_combined.js +21 -15
- package/esm2015/lib/ImageCellInfoDescription.js +9 -9
- package/esm2015/lib/ImageColumnDescription.js +29 -21
- package/esm2015/lib/ImageColumnDescriptionMetadata.js +3 -2
- package/esm2015/lib/ItemToolTipLayerDescription.js +30 -6
- package/esm2015/lib/ItemToolTipLayerDescriptionMetadata.js +3 -0
- package/esm2015/lib/LayoutPrimaryKeyValueDescriptionMetadata.js +1 -1
- package/esm2015/lib/ListPanelPrimaryKeyValueDescriptionMetadata.js +1 -1
- package/esm2015/lib/LiteralFilterExpressionDescription.js +30 -6
- package/esm2015/lib/LiteralFilterExpressionDescriptionMetadata.js +3 -0
- package/esm2015/lib/NumericAngleAxisDescription.js +6 -6
- package/esm2015/lib/NumericAxisBaseDescription.js +132 -84
- package/esm2015/lib/NumericAxisBaseDescriptionMetadata.js +6 -0
- package/esm2015/lib/NumericCellInfoDescription.js +39 -39
- package/esm2015/lib/NumericCellInfoDescriptionMetadata.js +1 -1
- package/esm2015/lib/NumericColumnDescription.js +59 -51
- package/esm2015/lib/NumericColumnDescriptionMetadata.js +4 -3
- package/esm2015/lib/NumericRadiusAxisDescription.js +6 -6
- package/esm2015/lib/OperationFilterExpressionDescription.js +79 -15
- package/esm2015/lib/OperationFilterExpressionDescriptionMetadata.js +8 -0
- package/esm2015/lib/OrdinalTimeXAxisDescription.js +15 -15
- package/esm2015/lib/PagePredictionEngine.js +1 -1
- package/esm2015/lib/PageRequestedEventArgs.js +24 -0
- package/esm2015/lib/PageRequestedEventArgsDescription.js +66 -0
- package/esm2015/lib/PageRequestedEventArgsDescriptionMetadata.js +41 -0
- package/esm2015/lib/PieSliceCollisionGeometry.js +1 -1
- package/esm2015/lib/PlatformAPIHelper.js +9 -1
- package/esm2015/lib/PlotAreaMouseButtonEventArgsDescriptionMetadata_combined.js +14 -0
- package/esm2015/lib/PrimaryKeyValueDescriptionMetadata.js +1 -1
- package/esm2015/lib/PropertyReferenceFilterExpressionDescription.js +19 -3
- package/esm2015/lib/PropertyReferenceFilterExpressionDescriptionMetadata.js +2 -0
- package/esm2015/lib/ProportionalCategoryAngleAxisDescription.js +12 -12
- package/esm2015/lib/RadialBaseChartDescription.js +228 -228
- package/esm2015/lib/RadialPieSeriesDescription.js +20 -12
- package/esm2015/lib/RadialPieSeriesDescriptionMetadata.js +1 -0
- package/esm2015/lib/RingSeriesBaseDescription.js +14 -6
- package/esm2015/lib/RingSeriesBaseDescriptionMetadata.js +1 -0
- package/esm2015/lib/RingSeriesDescription.js +3 -3
- package/esm2015/lib/SectionHeaderCellInfoDescription.js +9 -9
- package/esm2015/lib/SeriesViewerDescription.js +469 -389
- package/esm2015/lib/StraightNumericAxisBaseDescription.js +3 -3
- package/esm2015/lib/SummaryCellInfoDescription.js +21 -21
- package/esm2015/lib/TemplateCellInfoDescription.js +3 -3
- package/esm2015/lib/TemplateColumnDescription.js +6 -6
- package/esm2015/lib/TemplateHeaderCellInfoDescription.js +3 -3
- package/esm2015/lib/TextCellInfoDescription.js +3 -3
- package/esm2015/lib/TextColumnDescription.js +26 -18
- package/esm2015/lib/TextColumnDescriptionMetadata.js +3 -2
- package/esm2015/lib/TextHeaderCellInfoDescription.js +15 -15
- package/esm2015/lib/TimeAxisBaseDescription.js +24 -24
- package/esm2015/lib/TimeXAxisDescription.js +12 -12
- package/esm2015/lib/ToolActionButtonPairInfoDescription.js +92 -44
- package/esm2015/lib/ToolActionButtonPairInfoDescriptionMetadata.js +6 -0
- package/esm2015/lib/TrendLineLayerDescription.js +8 -8
- package/esm2015/lib/TrendLineLayerDescriptionMetadata.js +2 -1
- package/esm2015/lib/ValueLayerDescription.js +33 -49
- package/esm2015/lib/ValueLayerDescriptionMetadata.js +2 -2
- package/esm2015/lib/VirtualDataSource.js +1 -1
- package/esm2015/lib/WebTabsDescription.js +15 -7
- package/esm2015/lib/WebTabsDescriptionMetadata.js +3 -0
- package/esm2015/lib/WrapperExpressionDescription.js +25 -9
- package/esm2015/lib/WrapperExpressionDescriptionMetadata.js +2 -0
- package/esm2015/lib/XYChartDescription.js +228 -228
- package/esm2015/lib/XamMultiScaleImageView_combined.js +110 -98
- package/esm2015/lib/igx-base-generic-data-source.js +183 -0
- package/esm2015/lib/igx-data-legend-series-context.js +6 -4
- package/esm2015/lib/igx-data-source-group-description-collection.js +70 -0
- package/esm2015/lib/igx-data-source-group-description-dynamic-module.js +34 -0
- package/esm2015/lib/igx-data-source-group-description-module.js +26 -0
- package/esm2015/lib/igx-data-source-group-description.js +16 -0
- package/esm2015/lib/igx-data-source-sort-description-collection.js +80 -0
- package/esm2015/lib/igx-data-source-sort-description-dynamic-module.js +34 -0
- package/esm2015/lib/igx-data-source-sort-description-module.js +26 -0
- package/esm2015/lib/igx-data-source-sort-description.js +64 -0
- package/esm2015/lib/igx-data-source-summary-description-collection.js +80 -0
- package/esm2015/lib/igx-data-source-summary-description-dynamic-module.js +34 -0
- package/esm2015/lib/igx-data-source-summary-description-module.js +26 -0
- package/esm2015/lib/igx-data-source-summary-description.js +106 -0
- package/esm2015/lib/igx-generic-virtual-data-source-dynamic-module.js +35 -0
- package/esm2015/lib/igx-generic-virtual-data-source-module.js +33 -0
- package/esm2015/lib/igx-generic-virtual-data-source.js +119 -0
- package/esm2015/lib/igx-page-requested-event-args.js +76 -0
- package/esm2015/lib/igx-popup-component.js +3 -1
- package/esm2015/public_api.js +66 -0
- package/esm5/lib/AsyncDataSourcePageRequest.js +18 -7
- package/esm5/lib/AsyncVirtualDataSourceProviderWorker.js +17 -16
- package/esm5/lib/AsyncVirtualDataTaskCompletionSource.js +39 -0
- package/esm5/lib/AxisDescription.js +532 -196
- package/esm5/lib/AxisDescriptionMetadata.js +32 -0
- package/esm5/lib/AzureMapsMapImageryDescription.js +97 -0
- package/esm5/lib/AzureMapsMapImageryDescriptionMetadata.js +49 -0
- package/esm5/lib/AzureMapsMapImageryDescriptionModule.js +24 -0
- package/esm5/lib/AzureMapsTileSource.js +138 -0
- package/esm5/lib/BaseGenericDataSource.js +107 -0
- package/esm5/lib/BaseGenericDataSourceDescription.js +80 -0
- package/esm5/lib/BaseGenericDataSourceDescriptionMetadata.js +42 -0
- package/esm5/lib/BaseVirtualDataProvider.js +484 -0
- package/esm5/lib/CanvasViewRenderer.js +11 -6
- package/esm5/lib/CategoryAngleAxisDescription.js +21 -21
- package/esm5/lib/CategoryAxisBaseDescription.js +24 -24
- package/esm5/lib/CategoryChartDescription.js +130 -130
- package/esm5/lib/CategoryDateTimeXAxisDescription.js +24 -24
- package/esm5/lib/CategoryHighlightLayerDescriptionMetadata.js +1 -0
- package/esm5/lib/CategoryToolTipLayerDescription.js +39 -3
- package/esm5/lib/CategoryToolTipLayerDescriptionMetadata.js +4 -0
- package/esm5/lib/CategoryXAxisDescription.js +57 -33
- package/esm5/lib/CategoryXAxisDescriptionMetadata.js +2 -0
- package/esm5/lib/CategoryYAxisDescription.js +57 -33
- package/esm5/lib/CategoryYAxisDescriptionMetadata.js +2 -0
- package/esm5/lib/CellInfoDescription.js +381 -201
- package/esm5/lib/CellInfoDescriptionMetadata.js +16 -0
- package/esm5/lib/ChartMouseEventArgsDescription.js +21 -9
- package/esm5/lib/ChartResizeIdleEventArgsDescription.js +31 -0
- package/esm5/lib/ChartResizeIdleEventArgsDescriptionMetadata.js +40 -0
- package/esm5/lib/CodeGeneratingComponentRendererCodeEmitter_combined.js +254 -254
- package/esm5/lib/ColumnGroupDescriptionDescriptionMetadata.js +2 -2
- package/esm5/lib/ColumnSummaryDescriptionDescriptionMetadata.js +2 -2
- package/esm5/lib/ComboBoxColumnDescription.js +24 -12
- package/esm5/lib/ComboBoxColumnDescriptionMetadata.js +2 -1
- package/esm5/lib/ComponentRendererAdapter.js +5 -3
- package/esm5/lib/ComponentRendererMethodHelperBuilder_combined.js +506 -179
- package/esm5/lib/ComponentRenderer_combined.js +723 -597
- package/esm5/lib/CustomLocalDataSourceDescription.js +31 -0
- package/esm5/lib/CustomLocalDataSourceDescriptionMetadata.js +40 -0
- package/esm5/lib/CustomLocalDataSourceDescriptionModule.js +24 -0
- package/esm5/lib/DataAnnotationAxisLayerDescriptionMetadata.js +1 -0
- package/esm5/lib/DataChartDashboardTileDescriptionModule.js +2 -0
- package/esm5/lib/DataChartDescription.js +99 -99
- package/esm5/lib/DataChartMouseButtonEventArgsDescription.js +27 -15
- package/esm5/lib/DataGridCellEventArgsDescriptionMetadata_combined.js +3 -1
- package/esm5/lib/DataGridColumnDescription.js +289 -109
- package/esm5/lib/DataGridColumnDescriptionMetadata.js +16 -0
- package/esm5/lib/DataGridDescription.js +633 -609
- package/esm5/lib/DataLegendDescription.js +430 -382
- package/esm5/lib/DataLegendDescriptionMetadata.js +4 -0
- package/esm5/lib/DataPieBaseChartDescription.js +172 -112
- package/esm5/lib/DataPieBaseChartDescriptionMetadata.js +9 -4
- package/esm5/lib/DataPieChartDescription.js +36 -36
- package/esm5/lib/DataPieChartDescriptionModule.js +2 -0
- package/esm5/lib/DataSourceGroupDescription.js +59 -0
- package/esm5/lib/DataSourceGroupDescriptionCollection.js +94 -0
- package/esm5/lib/DataSourceGroupDescriptionDescription.js +26 -0
- package/esm5/lib/DataSourceGroupDescriptionDescriptionMetadata.js +43 -0
- package/esm5/lib/DataSourceGroupDescriptionDescriptionModule.js +26 -0
- package/esm5/lib/DataSourceSortDescription.js +75 -0
- package/esm5/lib/DataSourceSortDescriptionCollection.js +110 -0
- package/esm5/lib/DataSourceSortDescriptionDescription.js +58 -0
- package/esm5/lib/DataSourceSortDescriptionDescriptionMetadata.js +44 -0
- package/esm5/lib/DataSourceSortDescriptionDescriptionModule.js +24 -0
- package/esm5/lib/DataSourceSummaryDescription.js +149 -0
- package/esm5/lib/DataSourceSummaryDescriptionCollection.js +116 -0
- package/esm5/lib/DataSourceSummaryDescriptionDescription.js +94 -0
- package/esm5/lib/DataSourceSummaryDescriptionDescriptionMetadata.js +49 -0
- package/esm5/lib/DataSourceSummaryDescriptionDescriptionModule.js +24 -0
- package/esm5/lib/DataToolTipLayerDescription.js +263 -227
- package/esm5/lib/DataToolTipLayerDescriptionMetadata.js +4 -0
- package/esm5/lib/DateTimeCellInfoDescription.js +18 -18
- package/esm5/lib/DateTimeCellInfoDescriptionMetadata.js +1 -1
- package/esm5/lib/DateTimeColumnDescription.js +47 -35
- package/esm5/lib/DateTimeColumnDescriptionMetadata.js +4 -3
- package/esm5/lib/DescriptionSerializer.js +1 -1
- package/esm5/lib/DomainChartDescription.js +636 -588
- package/esm5/lib/DomainChartDescriptionMetadata.js +6 -2
- package/esm5/lib/DomainChartSeriesPointerEventArgsDescription.js +21 -9
- package/esm5/lib/DomainChartSeriesPointerEventArgsDescriptionMetadata.js +1 -0
- package/esm5/lib/EditorCellInfoDescription.js +30 -30
- package/esm5/lib/FilterCellInfoDescription.js +36 -36
- package/esm5/lib/FilterExpressionDescription.js +98 -1
- package/esm5/lib/FilterExpressionDescriptionMetadata.js +8 -0
- package/esm5/lib/FinancialChartDescription.js +176 -176
- package/esm5/lib/FontRegistry.js +53 -0
- package/esm5/lib/FunctionFilterExpressionDescription.js +42 -6
- package/esm5/lib/FunctionFilterExpressionDescriptionMetadata.js +3 -0
- package/esm5/lib/GenericDataSourcePage.js +84 -0
- package/esm5/lib/GenericDataSourceSchemaPropertyType.js +37 -0
- package/esm5/lib/GenericInternalVirtualDataProvider.js +250 -0
- package/esm5/lib/GenericInternalVirtualDataSource.js +151 -0
- package/esm5/lib/GenericPageResponse.js +39 -0
- package/esm5/lib/GenericSectionInformation.js +77 -0
- package/esm5/lib/GenericSummaryResult.js +88 -0
- package/esm5/lib/GenericVirtualDataProviderWorker.js +180 -0
- package/esm5/lib/GenericVirtualDataProviderWorkerSettings.js +88 -0
- package/esm5/lib/GenericVirtualDataSource.js +180 -0
- package/esm5/lib/GenericVirtualDataSourceDescription.js +37 -0
- package/esm5/lib/GenericVirtualDataSourceDescriptionMetadata.js +45 -0
- package/esm5/lib/GenericVirtualDataSourceDescriptionModule.js +24 -0
- package/esm5/lib/GeographicMapImageryDescription_combined.js +41 -41
- package/esm5/lib/GeometryUtil.js +18 -3
- package/esm5/lib/GridConditionalStyleFontInfoDescription.js +80 -0
- package/esm5/lib/GridConditionalStyleFontInfoDescriptionMetadata.js +44 -0
- package/esm5/lib/GridConditionalStyleFontInfoDescriptionModule.js +24 -0
- package/esm5/lib/HierarchicalRingSeriesDescription.js +3 -3
- package/esm5/lib/IRenderer_combined.js +21 -15
- package/esm5/lib/ImageCellInfoDescription.js +9 -9
- package/esm5/lib/ImageColumnDescription.js +32 -20
- package/esm5/lib/ImageColumnDescriptionMetadata.js +3 -2
- package/esm5/lib/ItemToolTipLayerDescription.js +42 -6
- package/esm5/lib/ItemToolTipLayerDescriptionMetadata.js +3 -0
- package/esm5/lib/LayoutPrimaryKeyValueDescriptionMetadata.js +1 -1
- package/esm5/lib/ListPanelPrimaryKeyValueDescriptionMetadata.js +1 -1
- package/esm5/lib/LiteralFilterExpressionDescription.js +42 -6
- package/esm5/lib/LiteralFilterExpressionDescriptionMetadata.js +3 -0
- package/esm5/lib/NumericAngleAxisDescription.js +6 -6
- package/esm5/lib/NumericAxisBaseDescription.js +156 -84
- package/esm5/lib/NumericAxisBaseDescriptionMetadata.js +6 -0
- package/esm5/lib/NumericCellInfoDescription.js +39 -39
- package/esm5/lib/NumericCellInfoDescriptionMetadata.js +1 -1
- package/esm5/lib/NumericColumnDescription.js +62 -50
- package/esm5/lib/NumericColumnDescriptionMetadata.js +4 -3
- package/esm5/lib/NumericRadiusAxisDescription.js +6 -6
- package/esm5/lib/OperationFilterExpressionDescription.js +111 -15
- package/esm5/lib/OperationFilterExpressionDescriptionMetadata.js +8 -0
- package/esm5/lib/OrdinalTimeXAxisDescription.js +15 -15
- package/esm5/lib/PagePredictionEngine.js +1 -1
- package/esm5/lib/PageRequestedEventArgs.js +26 -0
- package/esm5/lib/PageRequestedEventArgsDescription.js +92 -0
- package/esm5/lib/PageRequestedEventArgsDescriptionMetadata.js +45 -0
- package/esm5/lib/PieSliceCollisionGeometry.js +1 -1
- package/esm5/lib/PlatformAPIHelper.js +9 -1
- package/esm5/lib/PlotAreaMouseButtonEventArgsDescriptionMetadata_combined.js +14 -0
- package/esm5/lib/PrimaryKeyValueDescriptionMetadata.js +1 -1
- package/esm5/lib/PropertyReferenceFilterExpressionDescription.js +27 -3
- package/esm5/lib/PropertyReferenceFilterExpressionDescriptionMetadata.js +2 -0
- package/esm5/lib/ProportionalCategoryAngleAxisDescription.js +12 -12
- package/esm5/lib/RadialBaseChartDescription.js +228 -228
- package/esm5/lib/RadialPieSeriesDescription.js +24 -12
- package/esm5/lib/RadialPieSeriesDescriptionMetadata.js +1 -0
- package/esm5/lib/RingSeriesBaseDescription.js +18 -6
- package/esm5/lib/RingSeriesBaseDescriptionMetadata.js +1 -0
- package/esm5/lib/RingSeriesDescription.js +3 -3
- package/esm5/lib/SectionHeaderCellInfoDescription.js +9 -9
- package/esm5/lib/SeriesViewerDescription.js +509 -389
- package/esm5/lib/StraightNumericAxisBaseDescription.js +3 -3
- package/esm5/lib/SummaryCellInfoDescription.js +21 -21
- package/esm5/lib/TemplateCellInfoDescription.js +3 -3
- package/esm5/lib/TemplateColumnDescription.js +6 -6
- package/esm5/lib/TemplateHeaderCellInfoDescription.js +3 -3
- package/esm5/lib/TextCellInfoDescription.js +3 -3
- package/esm5/lib/TextColumnDescription.js +29 -17
- package/esm5/lib/TextColumnDescriptionMetadata.js +3 -2
- package/esm5/lib/TextHeaderCellInfoDescription.js +15 -15
- package/esm5/lib/TimeAxisBaseDescription.js +24 -24
- package/esm5/lib/TimeXAxisDescription.js +12 -12
- package/esm5/lib/ToolActionButtonPairInfoDescription.js +115 -43
- package/esm5/lib/ToolActionButtonPairInfoDescriptionMetadata.js +6 -0
- package/esm5/lib/TrendLineLayerDescription.js +9 -9
- package/esm5/lib/TrendLineLayerDescriptionMetadata.js +2 -1
- package/esm5/lib/ValueLayerDescription.js +32 -56
- package/esm5/lib/ValueLayerDescriptionMetadata.js +2 -2
- package/esm5/lib/VirtualDataSource.js +1 -1
- package/esm5/lib/WebTabsDescription.js +19 -7
- package/esm5/lib/WebTabsDescriptionMetadata.js +3 -0
- package/esm5/lib/WrapperExpressionDescription.js +33 -9
- package/esm5/lib/WrapperExpressionDescriptionMetadata.js +2 -0
- package/esm5/lib/XYChartDescription.js +228 -228
- package/esm5/lib/XamMultiScaleImageView_combined.js +109 -97
- package/esm5/lib/igx-base-generic-data-source.js +209 -0
- package/esm5/lib/igx-data-legend-series-context.js +6 -4
- package/esm5/lib/igx-data-source-group-description-collection.js +76 -0
- package/esm5/lib/igx-data-source-group-description-dynamic-module.js +33 -0
- package/esm5/lib/igx-data-source-group-description-module.js +27 -0
- package/esm5/lib/igx-data-source-group-description.js +24 -0
- package/esm5/lib/igx-data-source-sort-description-collection.js +90 -0
- package/esm5/lib/igx-data-source-sort-description-dynamic-module.js +33 -0
- package/esm5/lib/igx-data-source-sort-description-module.js +27 -0
- package/esm5/lib/igx-data-source-sort-description.js +78 -0
- package/esm5/lib/igx-data-source-summary-description-collection.js +90 -0
- package/esm5/lib/igx-data-source-summary-description-dynamic-module.js +33 -0
- package/esm5/lib/igx-data-source-summary-description-module.js +27 -0
- package/esm5/lib/igx-data-source-summary-description.js +133 -0
- package/esm5/lib/igx-generic-virtual-data-source-dynamic-module.js +34 -0
- package/esm5/lib/igx-generic-virtual-data-source-module.js +32 -0
- package/esm5/lib/igx-generic-virtual-data-source.js +133 -0
- package/esm5/lib/igx-page-requested-event-args.js +102 -0
- package/esm5/lib/igx-popup-component.js +3 -1
- package/esm5/public_api.js +66 -0
- package/fesm2015/igniteui-angular-core.js +13513 -7629
- package/fesm5/igniteui-angular-core.js +15947 -8807
- package/lib/AsyncDataSourcePageRequest.d.ts +4 -1
- package/lib/AsyncVirtualDataSourceProviderWorker.d.ts +4 -3
- package/lib/AsyncVirtualDataTaskCompletionSource.d.ts +14 -0
- package/lib/AxisDescription.d.ts +151 -67
- package/lib/AzureMapsMapImageryDescription.d.ts +28 -0
- package/lib/AzureMapsMapImageryDescriptionMetadata.d.ts +13 -0
- package/lib/AzureMapsMapImageryDescriptionModule.d.ts +9 -0
- package/lib/AzureMapsTileSource.d.ts +33 -0
- package/lib/BaseGenericDataSource.d.ts +36 -0
- package/lib/BaseGenericDataSourceDescription.d.ts +27 -0
- package/lib/BaseGenericDataSourceDescriptionMetadata.d.ts +13 -0
- package/lib/BaseVirtualDataProvider.d.ts +113 -0
- package/lib/CanvasViewRenderer.d.ts +7 -6
- package/lib/CategoryAngleAxisDescription.d.ts +7 -7
- package/lib/CategoryAxisBaseDescription.d.ts +8 -8
- package/lib/CategoryChartDescription.d.ts +45 -45
- package/lib/CategoryDateTimeXAxisDescription.d.ts +8 -8
- package/lib/CategoryToolTipLayerDescription.d.ts +10 -1
- package/lib/CategoryXAxisDescription.d.ts +17 -11
- package/lib/CategoryYAxisDescription.d.ts +17 -11
- package/lib/CellInfoDescription.d.ts +116 -71
- package/lib/ChartMouseEventArgsDescription.d.ts +6 -3
- package/lib/ChartResizeIdleEventArgsDescription.d.ts +11 -0
- package/lib/ChartResizeIdleEventArgsDescriptionMetadata.d.ts +13 -0
- package/lib/CodeGeneratingComponentRendererCodeEmitter_combined.d.ts +29 -29
- package/lib/ComboBoxColumnDescription.d.ts +8 -4
- package/lib/ComponentRendererMethodHelperBuilder_combined.d.ts +36 -13
- package/lib/ComponentRenderer_combined.d.ts +119 -113
- package/lib/CustomLocalDataSourceDescription.d.ts +11 -0
- package/lib/CustomLocalDataSourceDescriptionMetadata.d.ts +13 -0
- package/lib/CustomLocalDataSourceDescriptionModule.d.ts +9 -0
- package/lib/DataChartDescription.d.ts +33 -33
- package/lib/DataChartMouseButtonEventArgsDescription.d.ts +8 -5
- package/lib/DataGridColumnDescription.d.ts +82 -37
- package/lib/DataGridDescription.d.ts +219 -212
- package/lib/DataLegendDescription.d.ts +150 -138
- package/lib/DataPieBaseChartDescription.d.ts +53 -38
- package/lib/DataPieChartDescription.d.ts +12 -12
- package/lib/DataSourceGroupDescription.d.ts +16 -0
- package/lib/DataSourceGroupDescriptionCollection.d.ts +27 -0
- package/lib/DataSourceGroupDescriptionDescription.d.ts +12 -0
- package/lib/DataSourceGroupDescriptionDescriptionMetadata.d.ts +13 -0
- package/lib/DataSourceGroupDescriptionDescriptionModule.d.ts +9 -0
- package/lib/DataSourceSortDescription.d.ts +20 -0
- package/lib/DataSourceSortDescriptionCollection.d.ts +31 -0
- package/lib/DataSourceSortDescriptionDescription.d.ts +19 -0
- package/lib/DataSourceSortDescriptionDescriptionMetadata.d.ts +13 -0
- package/lib/DataSourceSortDescriptionDescriptionModule.d.ts +9 -0
- package/lib/DataSourceSummaryDescription.d.ts +38 -0
- package/lib/DataSourceSummaryDescriptionCollection.d.ts +31 -0
- package/lib/DataSourceSummaryDescriptionDescription.d.ts +28 -0
- package/lib/DataSourceSummaryDescriptionDescriptionMetadata.d.ts +13 -0
- package/lib/DataSourceSummaryDescriptionDescriptionModule.d.ts +9 -0
- package/lib/DataToolTipLayerDescription.d.ts +91 -82
- package/lib/DateTimeCellInfoDescription.d.ts +6 -6
- package/lib/DateTimeColumnDescription.d.ts +17 -13
- package/lib/DomainChartDescription.d.ts +216 -204
- package/lib/DomainChartSeriesPointerEventArgsDescription.d.ts +6 -3
- package/lib/EditorCellInfoDescription.d.ts +10 -10
- package/lib/FilterCellInfoDescription.d.ts +12 -12
- package/lib/FilterExpressionDescription.d.ts +24 -0
- package/lib/FinancialChartDescription.d.ts +61 -61
- package/lib/FontRegistry.d.ts +13 -0
- package/lib/FunctionFilterExpressionDescription.d.ts +11 -2
- package/lib/GenericDataSourcePage.d.ts +35 -0
- package/lib/GenericDataSourceSchemaPropertyType.d.ts +30 -0
- package/lib/GenericInternalVirtualDataProvider.d.ts +43 -0
- package/lib/GenericInternalVirtualDataSource.d.ts +49 -0
- package/lib/GenericPageResponse.d.ts +23 -0
- package/lib/GenericSectionInformation.d.ts +23 -0
- package/lib/GenericSummaryResult.d.ts +27 -0
- package/lib/GenericVirtualDataProviderWorker.d.ts +39 -0
- package/lib/GenericVirtualDataProviderWorkerSettings.d.ts +31 -0
- package/lib/GenericVirtualDataSource.d.ts +41 -0
- package/lib/GenericVirtualDataSourceDescription.d.ts +13 -0
- package/lib/GenericVirtualDataSourceDescriptionMetadata.d.ts +13 -0
- package/lib/GenericVirtualDataSourceDescriptionModule.d.ts +9 -0
- package/lib/GeographicMapImageryDescription_combined.d.ts +14 -14
- package/lib/GeometryUtil.d.ts +4 -3
- package/lib/GridConditionalStyleFontInfoDescription.d.ts +23 -0
- package/lib/GridConditionalStyleFontInfoDescriptionMetadata.d.ts +13 -0
- package/lib/GridConditionalStyleFontInfoDescriptionModule.d.ts +9 -0
- package/lib/HierarchicalRingSeriesDescription.d.ts +1 -1
- package/lib/IRenderer_combined.d.ts +14 -12
- package/lib/ImageCellInfoDescription.d.ts +3 -3
- package/lib/ImageColumnDescription.d.ts +12 -8
- package/lib/ItemToolTipLayerDescription.d.ts +11 -2
- package/lib/LiteralFilterExpressionDescription.d.ts +11 -2
- package/lib/NumericAngleAxisDescription.d.ts +2 -2
- package/lib/NumericAxisBaseDescription.d.ts +46 -28
- package/lib/NumericCellInfoDescription.d.ts +13 -13
- package/lib/NumericColumnDescription.d.ts +22 -18
- package/lib/NumericRadiusAxisDescription.d.ts +2 -2
- package/lib/OperationFilterExpressionDescription.d.ts +29 -5
- package/lib/OrdinalTimeXAxisDescription.d.ts +5 -5
- package/lib/PageRequestedEventArgs.d.ts +12 -0
- package/lib/PageRequestedEventArgsDescription.d.ts +26 -0
- package/lib/PageRequestedEventArgsDescriptionMetadata.d.ts +13 -0
- package/lib/PropertyReferenceFilterExpressionDescription.d.ts +7 -1
- package/lib/ProportionalCategoryAngleAxisDescription.d.ts +4 -4
- package/lib/RadialBaseChartDescription.d.ts +80 -80
- package/lib/RadialPieSeriesDescription.d.ts +7 -4
- package/lib/RingSeriesBaseDescription.d.ts +5 -2
- package/lib/RingSeriesDescription.d.ts +1 -1
- package/lib/SectionHeaderCellInfoDescription.d.ts +3 -3
- package/lib/SeriesViewerDescription.d.ts +167 -137
- package/lib/StraightNumericAxisBaseDescription.d.ts +1 -1
- package/lib/SummaryCellInfoDescription.d.ts +7 -7
- package/lib/TemplateCellInfoDescription.d.ts +1 -1
- package/lib/TemplateColumnDescription.d.ts +2 -2
- package/lib/TemplateHeaderCellInfoDescription.d.ts +1 -1
- package/lib/TextCellInfoDescription.d.ts +1 -1
- package/lib/TextColumnDescription.d.ts +11 -7
- package/lib/TextHeaderCellInfoDescription.d.ts +5 -5
- package/lib/TimeAxisBaseDescription.d.ts +8 -8
- package/lib/TimeXAxisDescription.d.ts +4 -4
- package/lib/ToolActionButtonPairInfoDescription.d.ts +33 -15
- package/lib/TrendLineLayerDescription.d.ts +3 -3
- package/lib/ValueLayerDescription.d.ts +11 -17
- package/lib/WebTabsDescription.d.ts +7 -3
- package/lib/WrapperExpressionDescription.d.ts +9 -3
- package/lib/XYChartDescription.d.ts +80 -80
- package/lib/XamMultiScaleImageView_combined.d.ts +40 -36
- package/lib/igx-base-generic-data-source.d.ts +52 -0
- package/lib/igx-data-legend-series-context.d.ts +4 -4
- package/lib/igx-data-source-group-description-collection.d.ts +20 -0
- package/lib/igx-data-source-group-description-dynamic-module.d.ts +9 -0
- package/lib/igx-data-source-group-description-module.d.ts +7 -0
- package/lib/igx-data-source-group-description.d.ts +10 -0
- package/lib/igx-data-source-sort-description-collection.d.ts +26 -0
- package/lib/igx-data-source-sort-description-dynamic-module.d.ts +9 -0
- package/lib/igx-data-source-sort-description-module.d.ts +7 -0
- package/lib/igx-data-source-sort-description.d.ts +31 -0
- package/lib/igx-data-source-summary-description-collection.d.ts +26 -0
- package/lib/igx-data-source-summary-description-dynamic-module.d.ts +9 -0
- package/lib/igx-data-source-summary-description-module.d.ts +7 -0
- package/lib/igx-data-source-summary-description.d.ts +42 -0
- package/lib/igx-generic-virtual-data-source-dynamic-module.d.ts +9 -0
- package/lib/igx-generic-virtual-data-source-module.d.ts +8 -0
- package/lib/igx-generic-virtual-data-source.d.ts +60 -0
- package/lib/igx-page-requested-event-args.d.ts +45 -0
- package/lib/igx-popup-component.d.ts +1 -1
- package/package.json +37 -37
- package/public_api.d.ts +66 -0
|
@@ -14,71 +14,71 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
14
14
|
__extends(DomainChartDescription, _super);
|
|
15
15
|
function DomainChartDescription() {
|
|
16
16
|
var _this = _super.call(this) || this;
|
|
17
|
-
_this.
|
|
18
|
-
_this.f2 = 0;
|
|
17
|
+
_this.fq = 0;
|
|
19
18
|
_this.f3 = 0;
|
|
20
19
|
_this.f4 = 0;
|
|
21
|
-
_this.
|
|
22
|
-
_this.
|
|
23
|
-
_this.fz = 0;
|
|
20
|
+
_this.f5 = 0;
|
|
21
|
+
_this.f2 = 0;
|
|
24
22
|
_this.fy = 0;
|
|
23
|
+
_this.f0 = 0;
|
|
24
|
+
_this.fz = 0;
|
|
25
|
+
_this.fx = 0;
|
|
26
|
+
_this.ob = null;
|
|
27
|
+
_this.oe = null;
|
|
28
|
+
_this.fn = 0;
|
|
29
|
+
_this.f6 = 0;
|
|
25
30
|
_this.fw = 0;
|
|
26
|
-
_this.n3 = null;
|
|
27
|
-
_this.n6 = null;
|
|
28
|
-
_this.fm = 0;
|
|
29
|
-
_this.f5 = 0;
|
|
30
|
-
_this.fv = 0;
|
|
31
31
|
_this.dk = 0;
|
|
32
|
-
_this.
|
|
33
|
-
_this.
|
|
34
|
-
_this.
|
|
32
|
+
_this.jz = 0;
|
|
33
|
+
_this.oh = null;
|
|
34
|
+
_this.jv = 0;
|
|
35
|
+
_this.jy = 0;
|
|
35
36
|
_this.jt = 0;
|
|
36
|
-
_this.
|
|
37
|
-
_this.
|
|
38
|
-
_this.
|
|
39
|
-
_this.k2 = null;
|
|
37
|
+
_this.oc = null;
|
|
38
|
+
_this.of = null;
|
|
39
|
+
_this.la = null;
|
|
40
40
|
_this.ei = 0;
|
|
41
41
|
_this.ej = 0;
|
|
42
42
|
_this.dt = 0;
|
|
43
43
|
_this.du = 0;
|
|
44
|
-
_this.
|
|
45
|
-
_this.
|
|
44
|
+
_this.k8 = null;
|
|
45
|
+
_this.k9 = null;
|
|
46
46
|
_this.b7 = false;
|
|
47
47
|
_this.p = null;
|
|
48
48
|
_this.m = null;
|
|
49
49
|
_this.o = null;
|
|
50
50
|
_this.l = null;
|
|
51
|
-
_this.
|
|
52
|
-
_this.
|
|
53
|
-
_this.
|
|
54
|
-
_this.
|
|
55
|
-
_this.
|
|
51
|
+
_this.mn = null;
|
|
52
|
+
_this.jp = 0;
|
|
53
|
+
_this.jq = 0;
|
|
54
|
+
_this.mp = null;
|
|
55
|
+
_this.mo = null;
|
|
56
56
|
_this.b8 = false;
|
|
57
|
-
_this.
|
|
57
|
+
_this.mq = null;
|
|
58
58
|
_this.q = null;
|
|
59
59
|
_this.e6 = 0;
|
|
60
60
|
_this.e7 = 0;
|
|
61
61
|
_this.e8 = 0;
|
|
62
62
|
_this.e9 = 0;
|
|
63
63
|
_this.b9 = false;
|
|
64
|
-
_this.
|
|
64
|
+
_this.mv = null;
|
|
65
65
|
_this.ca = false;
|
|
66
66
|
_this.fb = 0;
|
|
67
67
|
_this.fc = 0;
|
|
68
68
|
_this.fd = 0;
|
|
69
69
|
_this.fe = 0;
|
|
70
|
-
_this.
|
|
71
|
-
_this.
|
|
70
|
+
_this.mr = null;
|
|
71
|
+
_this.ms = null;
|
|
72
72
|
_this.fa = 0;
|
|
73
|
-
_this.
|
|
74
|
-
_this.
|
|
75
|
-
_this.
|
|
73
|
+
_this.mt = null;
|
|
74
|
+
_this.mu = null;
|
|
75
|
+
_this.lh = null;
|
|
76
76
|
_this.n = null;
|
|
77
|
-
_this.
|
|
78
|
-
_this.
|
|
79
|
-
_this.
|
|
80
|
-
_this.
|
|
81
|
-
_this.
|
|
77
|
+
_this.lf = null;
|
|
78
|
+
_this.lg = null;
|
|
79
|
+
_this.li = null;
|
|
80
|
+
_this.lj = null;
|
|
81
|
+
_this.lk = null;
|
|
82
82
|
_this.d9 = 0;
|
|
83
83
|
_this.ea = 0;
|
|
84
84
|
_this.eb = 0;
|
|
@@ -88,11 +88,11 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
88
88
|
_this.d6 = 0;
|
|
89
89
|
_this.d7 = 0;
|
|
90
90
|
_this.b6 = false;
|
|
91
|
-
_this.
|
|
91
|
+
_this.ll = null;
|
|
92
92
|
_this.d8 = 0;
|
|
93
|
-
_this.
|
|
94
|
-
_this.
|
|
95
|
-
_this.
|
|
93
|
+
_this.lm = null;
|
|
94
|
+
_this.ln = null;
|
|
95
|
+
_this.lb = null;
|
|
96
96
|
_this.d0 = 0;
|
|
97
97
|
_this.d1 = 0;
|
|
98
98
|
_this.d2 = 0;
|
|
@@ -102,17 +102,17 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
102
102
|
_this.dx = 0;
|
|
103
103
|
_this.dy = 0;
|
|
104
104
|
_this.b5 = false;
|
|
105
|
-
_this.
|
|
105
|
+
_this.lc = null;
|
|
106
106
|
_this.dz = 0;
|
|
107
|
-
_this.
|
|
108
|
-
_this.
|
|
109
|
-
_this.
|
|
110
|
-
_this.
|
|
107
|
+
_this.ld = null;
|
|
108
|
+
_this.le = null;
|
|
109
|
+
_this.lz = null;
|
|
110
|
+
_this.l0 = null;
|
|
111
111
|
_this.ep = 0;
|
|
112
|
-
_this.
|
|
113
|
-
_this.
|
|
114
|
-
_this.
|
|
115
|
-
_this.
|
|
112
|
+
_this.l1 = null;
|
|
113
|
+
_this.l2 = null;
|
|
114
|
+
_this.l3 = null;
|
|
115
|
+
_this.ly = null;
|
|
116
116
|
_this.eq = 0;
|
|
117
117
|
_this.er = 0;
|
|
118
118
|
_this.es = 0;
|
|
@@ -121,69 +121,69 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
121
121
|
_this.em = 0;
|
|
122
122
|
_this.en = 0;
|
|
123
123
|
_this.eo = 0;
|
|
124
|
-
_this.
|
|
125
|
-
_this.
|
|
124
|
+
_this.l9 = null;
|
|
125
|
+
_this.ma = null;
|
|
126
126
|
_this.ev = 0;
|
|
127
|
-
_this.
|
|
128
|
-
_this.
|
|
129
|
-
_this.
|
|
130
|
-
_this.
|
|
131
|
-
_this.
|
|
127
|
+
_this.mb = null;
|
|
128
|
+
_this.mc = null;
|
|
129
|
+
_this.lt = null;
|
|
130
|
+
_this.lu = null;
|
|
131
|
+
_this.lv = null;
|
|
132
132
|
_this.ek = 0;
|
|
133
|
-
_this.lo = null;
|
|
134
|
-
_this.lp = null;
|
|
135
133
|
_this.lw = null;
|
|
136
134
|
_this.lx = null;
|
|
137
|
-
_this.
|
|
135
|
+
_this.l4 = null;
|
|
136
|
+
_this.l5 = null;
|
|
137
|
+
_this.l6 = null;
|
|
138
138
|
_this.eu = 0;
|
|
139
|
-
_this.
|
|
140
|
-
_this.
|
|
139
|
+
_this.l7 = null;
|
|
140
|
+
_this.l8 = null;
|
|
141
141
|
_this.dp = 0;
|
|
142
142
|
_this.dq = 0;
|
|
143
143
|
_this.dr = 0;
|
|
144
144
|
_this.ds = 0;
|
|
145
|
-
_this.
|
|
146
|
-
_this.
|
|
147
|
-
_this.
|
|
148
|
-
_this.
|
|
145
|
+
_this.k7 = null;
|
|
146
|
+
_this.mh = null;
|
|
147
|
+
_this.mi = null;
|
|
148
|
+
_this.mj = null;
|
|
149
149
|
_this.e2 = 0;
|
|
150
150
|
_this.e3 = 0;
|
|
151
151
|
_this.e4 = 0;
|
|
152
152
|
_this.e5 = 0;
|
|
153
|
-
_this.
|
|
153
|
+
_this.mk = null;
|
|
154
154
|
_this.e1 = 0;
|
|
155
|
-
_this.
|
|
156
|
-
_this.
|
|
155
|
+
_this.ml = null;
|
|
156
|
+
_this.mm = null;
|
|
157
157
|
_this.ex = 0;
|
|
158
158
|
_this.ey = 0;
|
|
159
159
|
_this.ez = 0;
|
|
160
160
|
_this.e0 = 0;
|
|
161
|
-
_this.
|
|
162
|
-
_this.
|
|
161
|
+
_this.md = null;
|
|
162
|
+
_this.me = null;
|
|
163
163
|
_this.ew = 0;
|
|
164
|
-
_this.
|
|
165
|
-
_this.
|
|
166
|
-
_this.
|
|
167
|
-
_this.
|
|
164
|
+
_this.mf = null;
|
|
165
|
+
_this.mg = null;
|
|
166
|
+
_this.lo = null;
|
|
167
|
+
_this.lp = null;
|
|
168
168
|
_this.ee = 0;
|
|
169
169
|
_this.ef = 0;
|
|
170
170
|
_this.eg = 0;
|
|
171
171
|
_this.eh = 0;
|
|
172
|
-
_this.
|
|
172
|
+
_this.lq = null;
|
|
173
173
|
_this.ed = 0;
|
|
174
|
-
_this.
|
|
175
|
-
_this.
|
|
174
|
+
_this.lr = null;
|
|
175
|
+
_this.ls = null;
|
|
176
176
|
_this.aj = null;
|
|
177
177
|
_this.v = null;
|
|
178
178
|
_this.u = null;
|
|
179
179
|
_this.s = null;
|
|
180
180
|
_this.w = null;
|
|
181
181
|
_this.ak = null;
|
|
182
|
-
_this.
|
|
183
|
-
_this.
|
|
184
|
-
_this.
|
|
185
|
-
_this.
|
|
186
|
-
_this.
|
|
182
|
+
_this.ny = null;
|
|
183
|
+
_this.m1 = null;
|
|
184
|
+
_this.nx = null;
|
|
185
|
+
_this.mz = null;
|
|
186
|
+
_this.nw = null;
|
|
187
187
|
_this.ai = null;
|
|
188
188
|
_this.t = null;
|
|
189
189
|
_this.ac = null;
|
|
@@ -192,15 +192,15 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
192
192
|
_this.y = null;
|
|
193
193
|
_this.ab = null;
|
|
194
194
|
_this.ad = null;
|
|
195
|
-
_this.
|
|
196
|
-
_this.
|
|
197
|
-
_this.
|
|
198
|
-
_this.
|
|
199
|
-
_this.
|
|
200
|
-
_this.
|
|
201
|
-
_this.
|
|
195
|
+
_this.nf = null;
|
|
196
|
+
_this.m2 = null;
|
|
197
|
+
_this.nd = null;
|
|
198
|
+
_this.nc = null;
|
|
199
|
+
_this.ne = null;
|
|
200
|
+
_this.ng = null;
|
|
201
|
+
_this.k6 = null;
|
|
202
202
|
_this.bn = null;
|
|
203
|
-
_this.
|
|
203
|
+
_this.m3 = null;
|
|
204
204
|
_this.bo = null;
|
|
205
205
|
_this.x = null;
|
|
206
206
|
_this.r = null;
|
|
@@ -208,151 +208,155 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
208
208
|
_this.ah = null;
|
|
209
209
|
_this.h = null;
|
|
210
210
|
_this.i = null;
|
|
211
|
-
_this.
|
|
211
|
+
_this.nl = null;
|
|
212
212
|
_this.cd = false;
|
|
213
213
|
_this.cf = false;
|
|
214
214
|
_this.ci = false;
|
|
215
215
|
_this.ck = false;
|
|
216
|
-
_this.
|
|
216
|
+
_this.m5 = null;
|
|
217
217
|
_this.ce = false;
|
|
218
|
-
_this.
|
|
219
|
-
_this.
|
|
218
|
+
_this.m4 = null;
|
|
219
|
+
_this.nk = null;
|
|
220
220
|
_this.br = null;
|
|
221
|
-
_this.
|
|
222
|
-
_this.
|
|
223
|
-
_this.
|
|
224
|
-
_this.
|
|
225
|
-
_this.
|
|
226
|
-
_this.
|
|
227
|
-
_this.
|
|
228
|
-
_this.
|
|
229
|
-
_this.
|
|
230
|
-
_this.
|
|
231
|
-
_this.fn = 0;
|
|
221
|
+
_this.kx = null;
|
|
222
|
+
_this.n9 = null;
|
|
223
|
+
_this.od = null;
|
|
224
|
+
_this.oa = null;
|
|
225
|
+
_this.oj = null;
|
|
226
|
+
_this.fv = 0;
|
|
227
|
+
_this.f1 = 0;
|
|
228
|
+
_this.np = null;
|
|
229
|
+
_this.no = null;
|
|
230
|
+
_this.nn = null;
|
|
232
231
|
_this.fo = 0;
|
|
232
|
+
_this.fp = 0;
|
|
233
233
|
_this.ag = null;
|
|
234
|
-
_this.
|
|
234
|
+
_this.nm = null;
|
|
235
235
|
_this.ae = null;
|
|
236
236
|
_this.af = null;
|
|
237
|
-
_this.
|
|
237
|
+
_this.jw = 0;
|
|
238
238
|
_this.dj = 0;
|
|
239
239
|
_this.bu = false;
|
|
240
240
|
_this.al = null;
|
|
241
|
-
_this.
|
|
242
|
-
_this.
|
|
241
|
+
_this.oi = null;
|
|
242
|
+
_this.f7 = 0;
|
|
243
243
|
_this.am = null;
|
|
244
244
|
_this.cl = false;
|
|
245
245
|
_this.bt = false;
|
|
246
|
-
_this.fr = 0;
|
|
247
|
-
_this.ft = 0;
|
|
248
246
|
_this.fs = 0;
|
|
249
|
-
_this.
|
|
250
|
-
_this.
|
|
251
|
-
_this.
|
|
252
|
-
_this.
|
|
253
|
-
_this.
|
|
254
|
-
_this.
|
|
255
|
-
_this.
|
|
256
|
-
_this.
|
|
257
|
-
_this.
|
|
258
|
-
_this.
|
|
259
|
-
_this.
|
|
260
|
-
_this.
|
|
247
|
+
_this.fu = 0;
|
|
248
|
+
_this.ft = 0;
|
|
249
|
+
_this.fr = 0;
|
|
250
|
+
_this.ju = 0;
|
|
251
|
+
_this.js = 0;
|
|
252
|
+
_this.jx = 0;
|
|
253
|
+
_this.ky = null;
|
|
254
|
+
_this.n1 = null;
|
|
255
|
+
_this.n2 = null;
|
|
256
|
+
_this.m7 = null;
|
|
257
|
+
_this.m6 = null;
|
|
258
|
+
_this.ff = 0;
|
|
259
|
+
_this.nh = null;
|
|
260
|
+
_this.nj = null;
|
|
261
|
+
_this.ni = null;
|
|
262
|
+
_this.j0 = 0;
|
|
263
|
+
_this.og = null;
|
|
264
|
+
_this.k3 = null;
|
|
261
265
|
_this.b4 = false;
|
|
262
|
-
_this.
|
|
266
|
+
_this.k5 = null;
|
|
263
267
|
_this.dn = 0;
|
|
264
|
-
_this.
|
|
268
|
+
_this.k4 = null;
|
|
265
269
|
_this.b1 = false;
|
|
266
270
|
_this.b3 = false;
|
|
267
271
|
_this.b2 = false;
|
|
268
|
-
_this.
|
|
269
|
-
_this.
|
|
270
|
-
_this.
|
|
271
|
-
_this.
|
|
272
|
-
_this.
|
|
273
|
-
_this.
|
|
272
|
+
_this.kz = null;
|
|
273
|
+
_this.k1 = null;
|
|
274
|
+
_this.k0 = null;
|
|
275
|
+
_this.k2 = null;
|
|
276
|
+
_this.jn = 0;
|
|
277
|
+
_this.jo = 0;
|
|
274
278
|
_this.ch = false;
|
|
275
279
|
_this.cj = false;
|
|
276
280
|
_this.cb = false;
|
|
277
|
-
_this.
|
|
278
|
-
_this.
|
|
279
|
-
_this.
|
|
281
|
+
_this.mx = null;
|
|
282
|
+
_this.my = null;
|
|
283
|
+
_this.jr = 0;
|
|
280
284
|
_this.bv = false;
|
|
281
285
|
_this.b0 = false;
|
|
282
286
|
_this.bw = false;
|
|
283
287
|
_this.cm = false;
|
|
284
|
-
_this.
|
|
288
|
+
_this.kg = null;
|
|
285
289
|
_this.by = false;
|
|
286
290
|
_this.bz = false;
|
|
287
291
|
_this.bx = false;
|
|
288
292
|
_this.dm = 0;
|
|
289
|
-
_this.
|
|
293
|
+
_this.ki = null;
|
|
294
|
+
_this.ks = null;
|
|
295
|
+
_this.kt = null;
|
|
296
|
+
_this.kr = null;
|
|
290
297
|
_this.kk = null;
|
|
298
|
+
_this.kq = null;
|
|
299
|
+
_this.jm = 0;
|
|
291
300
|
_this.kl = null;
|
|
292
|
-
_this.kj = null;
|
|
293
|
-
_this.kc = null;
|
|
294
|
-
_this.ki = null;
|
|
295
|
-
_this.jk = 0;
|
|
296
|
-
_this.kd = null;
|
|
297
301
|
_this.k = null;
|
|
302
|
+
_this.kv = null;
|
|
303
|
+
_this.kw = null;
|
|
304
|
+
_this.kp = null;
|
|
305
|
+
_this.kj = null;
|
|
306
|
+
_this.km = null;
|
|
307
|
+
_this.dl = 0;
|
|
298
308
|
_this.kn = null;
|
|
299
309
|
_this.ko = null;
|
|
300
|
-
_this.kh = null;
|
|
301
|
-
_this.kb = null;
|
|
302
|
-
_this.ke = null;
|
|
303
|
-
_this.dl = 0;
|
|
304
|
-
_this.kf = null;
|
|
305
|
-
_this.kg = null;
|
|
306
310
|
_this.an = null;
|
|
307
311
|
_this.ao = null;
|
|
308
|
-
_this.
|
|
312
|
+
_this.f8 = 0;
|
|
309
313
|
_this.cg = false;
|
|
310
|
-
_this.
|
|
311
|
-
_this.
|
|
312
|
-
_this.
|
|
313
|
-
_this.
|
|
314
|
-
_this.
|
|
315
|
-
_this.
|
|
314
|
+
_this.m9 = null;
|
|
315
|
+
_this.ol = null;
|
|
316
|
+
_this.nb = null;
|
|
317
|
+
_this.on = null;
|
|
318
|
+
_this.m8 = null;
|
|
319
|
+
_this.na = null;
|
|
320
|
+
_this.fk = 0;
|
|
316
321
|
_this.fj = 0;
|
|
317
|
-
_this.fi = 0;
|
|
318
|
-
_this.ff = 0;
|
|
319
322
|
_this.fg = 0;
|
|
320
323
|
_this.fh = 0;
|
|
324
|
+
_this.fi = 0;
|
|
325
|
+
_this.fm = 0;
|
|
321
326
|
_this.fl = 0;
|
|
322
|
-
_this.fk = 0;
|
|
323
327
|
_this.cc = false;
|
|
324
|
-
_this.
|
|
325
|
-
_this.
|
|
328
|
+
_this.ok = null;
|
|
329
|
+
_this.om = null;
|
|
330
|
+
_this.gc = 0;
|
|
326
331
|
_this.gb = 0;
|
|
332
|
+
_this.f9 = 0;
|
|
333
|
+
_this.gf = 0;
|
|
327
334
|
_this.ga = 0;
|
|
328
|
-
_this.f8 = 0;
|
|
329
335
|
_this.ge = 0;
|
|
330
|
-
_this.f9 = 0;
|
|
331
336
|
_this.gd = 0;
|
|
332
|
-
_this.gc = 0;
|
|
333
337
|
_this.cn = false;
|
|
338
|
+
_this.gh = 0;
|
|
334
339
|
_this.gg = 0;
|
|
335
|
-
_this.
|
|
340
|
+
_this.gj = 0;
|
|
336
341
|
_this.gi = 0;
|
|
337
|
-
_this.gh = 0;
|
|
338
|
-
_this.nr = null;
|
|
339
|
-
_this.n0 = null;
|
|
340
|
-
_this.nw = null;
|
|
341
|
-
_this.nx = null;
|
|
342
|
-
_this.ny = null;
|
|
343
|
-
_this.nv = null;
|
|
344
342
|
_this.nz = null;
|
|
343
|
+
_this.n8 = null;
|
|
344
|
+
_this.n4 = null;
|
|
345
|
+
_this.n5 = null;
|
|
346
|
+
_this.n6 = null;
|
|
347
|
+
_this.n3 = null;
|
|
348
|
+
_this.n7 = null;
|
|
349
|
+
_this.n0 = null;
|
|
350
|
+
_this.nr = null;
|
|
345
351
|
_this.ns = null;
|
|
346
|
-
_this.
|
|
347
|
-
_this.
|
|
348
|
-
_this.
|
|
349
|
-
_this.
|
|
350
|
-
_this.
|
|
351
|
-
_this.
|
|
352
|
-
_this.
|
|
353
|
-
_this.
|
|
354
|
-
_this.ms = null;
|
|
355
|
-
_this.mo = null;
|
|
352
|
+
_this.nt = null;
|
|
353
|
+
_this.nq = null;
|
|
354
|
+
_this.nu = null;
|
|
355
|
+
_this.ku = null;
|
|
356
|
+
_this.kh = null;
|
|
357
|
+
_this.nv = null;
|
|
358
|
+
_this.m0 = null;
|
|
359
|
+
_this.mw = null;
|
|
356
360
|
return _this;
|
|
357
361
|
}
|
|
358
362
|
DomainChartDescription.prototype.get_type = function () {
|
|
@@ -367,10 +371,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
367
371
|
});
|
|
368
372
|
Object.defineProperty(DomainChartDescription.prototype, "pixelScalingRatio", {
|
|
369
373
|
get: function () {
|
|
370
|
-
return this.
|
|
374
|
+
return this.fq;
|
|
371
375
|
},
|
|
372
376
|
set: function (a) {
|
|
373
|
-
this.
|
|
377
|
+
this.fq = a;
|
|
374
378
|
this.g("PixelScalingRatio");
|
|
375
379
|
},
|
|
376
380
|
enumerable: false,
|
|
@@ -378,10 +382,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
378
382
|
});
|
|
379
383
|
Object.defineProperty(DomainChartDescription.prototype, "titleLeftMargin", {
|
|
380
384
|
get: function () {
|
|
381
|
-
return this.
|
|
385
|
+
return this.f3;
|
|
382
386
|
},
|
|
383
387
|
set: function (a) {
|
|
384
|
-
this.
|
|
388
|
+
this.f3 = a;
|
|
385
389
|
this.g("TitleLeftMargin");
|
|
386
390
|
},
|
|
387
391
|
enumerable: false,
|
|
@@ -389,10 +393,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
389
393
|
});
|
|
390
394
|
Object.defineProperty(DomainChartDescription.prototype, "titleRightMargin", {
|
|
391
395
|
get: function () {
|
|
392
|
-
return this.
|
|
396
|
+
return this.f4;
|
|
393
397
|
},
|
|
394
398
|
set: function (a) {
|
|
395
|
-
this.
|
|
399
|
+
this.f4 = a;
|
|
396
400
|
this.g("TitleRightMargin");
|
|
397
401
|
},
|
|
398
402
|
enumerable: false,
|
|
@@ -400,10 +404,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
400
404
|
});
|
|
401
405
|
Object.defineProperty(DomainChartDescription.prototype, "titleTopMargin", {
|
|
402
406
|
get: function () {
|
|
403
|
-
return this.
|
|
407
|
+
return this.f5;
|
|
404
408
|
},
|
|
405
409
|
set: function (a) {
|
|
406
|
-
this.
|
|
410
|
+
this.f5 = a;
|
|
407
411
|
this.g("TitleTopMargin");
|
|
408
412
|
},
|
|
409
413
|
enumerable: false,
|
|
@@ -411,10 +415,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
411
415
|
});
|
|
412
416
|
Object.defineProperty(DomainChartDescription.prototype, "titleBottomMargin", {
|
|
413
417
|
get: function () {
|
|
414
|
-
return this.
|
|
418
|
+
return this.f2;
|
|
415
419
|
},
|
|
416
420
|
set: function (a) {
|
|
417
|
-
this.
|
|
421
|
+
this.f2 = a;
|
|
418
422
|
this.g("TitleBottomMargin");
|
|
419
423
|
},
|
|
420
424
|
enumerable: false,
|
|
@@ -422,10 +426,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
422
426
|
});
|
|
423
427
|
Object.defineProperty(DomainChartDescription.prototype, "subtitleLeftMargin", {
|
|
424
428
|
get: function () {
|
|
425
|
-
return this.
|
|
429
|
+
return this.fy;
|
|
426
430
|
},
|
|
427
431
|
set: function (a) {
|
|
428
|
-
this.
|
|
432
|
+
this.fy = a;
|
|
429
433
|
this.g("SubtitleLeftMargin");
|
|
430
434
|
},
|
|
431
435
|
enumerable: false,
|
|
@@ -433,10 +437,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
433
437
|
});
|
|
434
438
|
Object.defineProperty(DomainChartDescription.prototype, "subtitleTopMargin", {
|
|
435
439
|
get: function () {
|
|
436
|
-
return this.
|
|
440
|
+
return this.f0;
|
|
437
441
|
},
|
|
438
442
|
set: function (a) {
|
|
439
|
-
this.
|
|
443
|
+
this.f0 = a;
|
|
440
444
|
this.g("SubtitleTopMargin");
|
|
441
445
|
},
|
|
442
446
|
enumerable: false,
|
|
@@ -444,10 +448,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
444
448
|
});
|
|
445
449
|
Object.defineProperty(DomainChartDescription.prototype, "subtitleRightMargin", {
|
|
446
450
|
get: function () {
|
|
447
|
-
return this.
|
|
451
|
+
return this.fz;
|
|
448
452
|
},
|
|
449
453
|
set: function (a) {
|
|
450
|
-
this.
|
|
454
|
+
this.fz = a;
|
|
451
455
|
this.g("SubtitleRightMargin");
|
|
452
456
|
},
|
|
453
457
|
enumerable: false,
|
|
@@ -455,10 +459,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
455
459
|
});
|
|
456
460
|
Object.defineProperty(DomainChartDescription.prototype, "subtitleBottomMargin", {
|
|
457
461
|
get: function () {
|
|
458
|
-
return this.
|
|
462
|
+
return this.fx;
|
|
459
463
|
},
|
|
460
464
|
set: function (a) {
|
|
461
|
-
this.
|
|
465
|
+
this.fx = a;
|
|
462
466
|
this.g("SubtitleBottomMargin");
|
|
463
467
|
},
|
|
464
468
|
enumerable: false,
|
|
@@ -466,10 +470,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
466
470
|
});
|
|
467
471
|
Object.defineProperty(DomainChartDescription.prototype, "subtitleTextColor", {
|
|
468
472
|
get: function () {
|
|
469
|
-
return this.
|
|
473
|
+
return this.ob;
|
|
470
474
|
},
|
|
471
475
|
set: function (a) {
|
|
472
|
-
this.
|
|
476
|
+
this.ob = a;
|
|
473
477
|
this.g("SubtitleTextColor");
|
|
474
478
|
},
|
|
475
479
|
enumerable: false,
|
|
@@ -477,10 +481,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
477
481
|
});
|
|
478
482
|
Object.defineProperty(DomainChartDescription.prototype, "titleTextColor", {
|
|
479
483
|
get: function () {
|
|
480
|
-
return this.
|
|
484
|
+
return this.oe;
|
|
481
485
|
},
|
|
482
486
|
set: function (a) {
|
|
483
|
-
this.
|
|
487
|
+
this.oe = a;
|
|
484
488
|
this.g("TitleTextColor");
|
|
485
489
|
},
|
|
486
490
|
enumerable: false,
|
|
@@ -488,10 +492,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
488
492
|
});
|
|
489
493
|
Object.defineProperty(DomainChartDescription.prototype, "leftMargin", {
|
|
490
494
|
get: function () {
|
|
491
|
-
return this.
|
|
495
|
+
return this.fn;
|
|
492
496
|
},
|
|
493
497
|
set: function (a) {
|
|
494
|
-
this.
|
|
498
|
+
this.fn = a;
|
|
495
499
|
this.g("LeftMargin");
|
|
496
500
|
},
|
|
497
501
|
enumerable: false,
|
|
@@ -499,10 +503,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
499
503
|
});
|
|
500
504
|
Object.defineProperty(DomainChartDescription.prototype, "topMargin", {
|
|
501
505
|
get: function () {
|
|
502
|
-
return this.
|
|
506
|
+
return this.f6;
|
|
503
507
|
},
|
|
504
508
|
set: function (a) {
|
|
505
|
-
this.
|
|
509
|
+
this.f6 = a;
|
|
506
510
|
this.g("TopMargin");
|
|
507
511
|
},
|
|
508
512
|
enumerable: false,
|
|
@@ -510,10 +514,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
510
514
|
});
|
|
511
515
|
Object.defineProperty(DomainChartDescription.prototype, "rightMargin", {
|
|
512
516
|
get: function () {
|
|
513
|
-
return this.
|
|
517
|
+
return this.fw;
|
|
514
518
|
},
|
|
515
519
|
set: function (a) {
|
|
516
|
-
this.
|
|
520
|
+
this.fw = a;
|
|
517
521
|
this.g("RightMargin");
|
|
518
522
|
},
|
|
519
523
|
enumerable: false,
|
|
@@ -532,10 +536,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
532
536
|
});
|
|
533
537
|
Object.defineProperty(DomainChartDescription.prototype, "transitionDuration", {
|
|
534
538
|
get: function () {
|
|
535
|
-
return this.
|
|
539
|
+
return this.jz;
|
|
536
540
|
},
|
|
537
541
|
set: function (a) {
|
|
538
|
-
this.
|
|
542
|
+
this.jz = a;
|
|
539
543
|
this.g("TransitionDuration");
|
|
540
544
|
},
|
|
541
545
|
enumerable: false,
|
|
@@ -543,10 +547,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
543
547
|
});
|
|
544
548
|
Object.defineProperty(DomainChartDescription.prototype, "transitionEasingFunctionRef", {
|
|
545
549
|
get: function () {
|
|
546
|
-
return this.
|
|
550
|
+
return this.oh;
|
|
547
551
|
},
|
|
548
552
|
set: function (a) {
|
|
549
|
-
this.
|
|
553
|
+
this.oh = a;
|
|
550
554
|
this.g("TransitionEasingFunctionRef");
|
|
551
555
|
},
|
|
552
556
|
enumerable: false,
|
|
@@ -554,10 +558,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
554
558
|
});
|
|
555
559
|
Object.defineProperty(DomainChartDescription.prototype, "highlightingTransitionDuration", {
|
|
556
560
|
get: function () {
|
|
557
|
-
return this.
|
|
561
|
+
return this.jv;
|
|
558
562
|
},
|
|
559
563
|
set: function (a) {
|
|
560
|
-
this.
|
|
564
|
+
this.jv = a;
|
|
561
565
|
this.g("HighlightingTransitionDuration");
|
|
562
566
|
},
|
|
563
567
|
enumerable: false,
|
|
@@ -565,10 +569,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
565
569
|
});
|
|
566
570
|
Object.defineProperty(DomainChartDescription.prototype, "selectionTransitionDuration", {
|
|
567
571
|
get: function () {
|
|
568
|
-
return this.
|
|
572
|
+
return this.jy;
|
|
569
573
|
},
|
|
570
574
|
set: function (a) {
|
|
571
|
-
this.
|
|
575
|
+
this.jy = a;
|
|
572
576
|
this.g("SelectionTransitionDuration");
|
|
573
577
|
},
|
|
574
578
|
enumerable: false,
|
|
@@ -576,10 +580,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
576
580
|
});
|
|
577
581
|
Object.defineProperty(DomainChartDescription.prototype, "focusTransitionDuration", {
|
|
578
582
|
get: function () {
|
|
579
|
-
return this.
|
|
583
|
+
return this.jt;
|
|
580
584
|
},
|
|
581
585
|
set: function (a) {
|
|
582
|
-
this.
|
|
586
|
+
this.jt = a;
|
|
583
587
|
this.g("FocusTransitionDuration");
|
|
584
588
|
},
|
|
585
589
|
enumerable: false,
|
|
@@ -587,10 +591,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
587
591
|
});
|
|
588
592
|
Object.defineProperty(DomainChartDescription.prototype, "subtitleTextStyle", {
|
|
589
593
|
get: function () {
|
|
590
|
-
return this.
|
|
594
|
+
return this.oc;
|
|
591
595
|
},
|
|
592
596
|
set: function (a) {
|
|
593
|
-
this.
|
|
597
|
+
this.oc = a;
|
|
594
598
|
this.g("SubtitleTextStyle");
|
|
595
599
|
},
|
|
596
600
|
enumerable: false,
|
|
@@ -598,10 +602,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
598
602
|
});
|
|
599
603
|
Object.defineProperty(DomainChartDescription.prototype, "titleTextStyle", {
|
|
600
604
|
get: function () {
|
|
601
|
-
return this.
|
|
605
|
+
return this.of;
|
|
602
606
|
},
|
|
603
607
|
set: function (a) {
|
|
604
|
-
this.
|
|
608
|
+
this.of = a;
|
|
605
609
|
this.g("TitleTextStyle");
|
|
606
610
|
},
|
|
607
611
|
enumerable: false,
|
|
@@ -609,10 +613,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
609
613
|
});
|
|
610
614
|
Object.defineProperty(DomainChartDescription.prototype, "dataToolTipGroupingMode", {
|
|
611
615
|
get: function () {
|
|
612
|
-
return this.
|
|
616
|
+
return this.la;
|
|
613
617
|
},
|
|
614
618
|
set: function (a) {
|
|
615
|
-
this.
|
|
619
|
+
this.la = a;
|
|
616
620
|
this.g("DataToolTipGroupingMode");
|
|
617
621
|
},
|
|
618
622
|
enumerable: false,
|
|
@@ -664,10 +668,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
664
668
|
});
|
|
665
669
|
Object.defineProperty(DomainChartDescription.prototype, "dataToolTipGroupedPositionModeX", {
|
|
666
670
|
get: function () {
|
|
667
|
-
return this.
|
|
671
|
+
return this.k8;
|
|
668
672
|
},
|
|
669
673
|
set: function (a) {
|
|
670
|
-
this.
|
|
674
|
+
this.k8 = a;
|
|
671
675
|
this.g("DataToolTipGroupedPositionModeX");
|
|
672
676
|
},
|
|
673
677
|
enumerable: false,
|
|
@@ -675,10 +679,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
675
679
|
});
|
|
676
680
|
Object.defineProperty(DomainChartDescription.prototype, "dataToolTipGroupedPositionModeY", {
|
|
677
681
|
get: function () {
|
|
678
|
-
return this.
|
|
682
|
+
return this.k9;
|
|
679
683
|
},
|
|
680
684
|
set: function (a) {
|
|
681
|
-
this.
|
|
685
|
+
this.k9 = a;
|
|
682
686
|
this.g("DataToolTipGroupedPositionModeY");
|
|
683
687
|
},
|
|
684
688
|
enumerable: false,
|
|
@@ -741,10 +745,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
741
745
|
});
|
|
742
746
|
Object.defineProperty(DomainChartDescription.prototype, "dataToolTipValueFormatAbbreviation", {
|
|
743
747
|
get: function () {
|
|
744
|
-
return this.
|
|
748
|
+
return this.mn;
|
|
745
749
|
},
|
|
746
750
|
set: function (a) {
|
|
747
|
-
this.
|
|
751
|
+
this.mn = a;
|
|
748
752
|
this.g("DataToolTipValueFormatAbbreviation");
|
|
749
753
|
},
|
|
750
754
|
enumerable: false,
|
|
@@ -752,10 +756,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
752
756
|
});
|
|
753
757
|
Object.defineProperty(DomainChartDescription.prototype, "dataToolTipValueFormatMaxFractions", {
|
|
754
758
|
get: function () {
|
|
755
|
-
return this.
|
|
759
|
+
return this.jp;
|
|
756
760
|
},
|
|
757
761
|
set: function (a) {
|
|
758
|
-
this.
|
|
762
|
+
this.jp = a;
|
|
759
763
|
this.g("DataToolTipValueFormatMaxFractions");
|
|
760
764
|
},
|
|
761
765
|
enumerable: false,
|
|
@@ -763,10 +767,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
763
767
|
});
|
|
764
768
|
Object.defineProperty(DomainChartDescription.prototype, "dataToolTipValueFormatMinFractions", {
|
|
765
769
|
get: function () {
|
|
766
|
-
return this.
|
|
770
|
+
return this.jq;
|
|
767
771
|
},
|
|
768
772
|
set: function (a) {
|
|
769
|
-
this.
|
|
773
|
+
this.jq = a;
|
|
770
774
|
this.g("DataToolTipValueFormatMinFractions");
|
|
771
775
|
},
|
|
772
776
|
enumerable: false,
|
|
@@ -774,10 +778,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
774
778
|
});
|
|
775
779
|
Object.defineProperty(DomainChartDescription.prototype, "dataToolTipValueFormatMode", {
|
|
776
780
|
get: function () {
|
|
777
|
-
return this.
|
|
781
|
+
return this.mp;
|
|
778
782
|
},
|
|
779
783
|
set: function (a) {
|
|
780
|
-
this.
|
|
784
|
+
this.mp = a;
|
|
781
785
|
this.g("DataToolTipValueFormatMode");
|
|
782
786
|
},
|
|
783
787
|
enumerable: false,
|
|
@@ -785,10 +789,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
785
789
|
});
|
|
786
790
|
Object.defineProperty(DomainChartDescription.prototype, "dataToolTipValueFormatCulture", {
|
|
787
791
|
get: function () {
|
|
788
|
-
return this.
|
|
792
|
+
return this.mo;
|
|
789
793
|
},
|
|
790
794
|
set: function (a) {
|
|
791
|
-
this.
|
|
795
|
+
this.mo = a;
|
|
792
796
|
this.g("DataToolTipValueFormatCulture");
|
|
793
797
|
},
|
|
794
798
|
enumerable: false,
|
|
@@ -807,10 +811,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
807
811
|
});
|
|
808
812
|
Object.defineProperty(DomainChartDescription.prototype, "dataToolTipValueFormatString", {
|
|
809
813
|
get: function () {
|
|
810
|
-
return this.
|
|
814
|
+
return this.mq;
|
|
811
815
|
},
|
|
812
816
|
set: function (a) {
|
|
813
|
-
this.
|
|
817
|
+
this.mq = a;
|
|
814
818
|
this.g("DataToolTipValueFormatString");
|
|
815
819
|
},
|
|
816
820
|
enumerable: false,
|
|
@@ -884,10 +888,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
884
888
|
});
|
|
885
889
|
Object.defineProperty(DomainChartDescription.prototype, "dataToolTipValueTextWhenMissingData", {
|
|
886
890
|
get: function () {
|
|
887
|
-
return this.
|
|
891
|
+
return this.mv;
|
|
888
892
|
},
|
|
889
893
|
set: function (a) {
|
|
890
|
-
this.
|
|
894
|
+
this.mv = a;
|
|
891
895
|
this.g("DataToolTipValueTextWhenMissingData");
|
|
892
896
|
},
|
|
893
897
|
enumerable: false,
|
|
@@ -950,10 +954,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
950
954
|
});
|
|
951
955
|
Object.defineProperty(DomainChartDescription.prototype, "dataToolTipValueTextColor", {
|
|
952
956
|
get: function () {
|
|
953
|
-
return this.
|
|
957
|
+
return this.mr;
|
|
954
958
|
},
|
|
955
959
|
set: function (a) {
|
|
956
|
-
this.
|
|
960
|
+
this.mr = a;
|
|
957
961
|
this.g("DataToolTipValueTextColor");
|
|
958
962
|
},
|
|
959
963
|
enumerable: false,
|
|
@@ -961,10 +965,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
961
965
|
});
|
|
962
966
|
Object.defineProperty(DomainChartDescription.prototype, "dataToolTipValueTextFontFamily", {
|
|
963
967
|
get: function () {
|
|
964
|
-
return this.
|
|
968
|
+
return this.ms;
|
|
965
969
|
},
|
|
966
970
|
set: function (a) {
|
|
967
|
-
this.
|
|
971
|
+
this.ms = a;
|
|
968
972
|
this.g("DataToolTipValueTextFontFamily");
|
|
969
973
|
},
|
|
970
974
|
enumerable: false,
|
|
@@ -983,10 +987,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
983
987
|
});
|
|
984
988
|
Object.defineProperty(DomainChartDescription.prototype, "dataToolTipValueTextFontStyle", {
|
|
985
989
|
get: function () {
|
|
986
|
-
return this.
|
|
990
|
+
return this.mt;
|
|
987
991
|
},
|
|
988
992
|
set: function (a) {
|
|
989
|
-
this.
|
|
993
|
+
this.mt = a;
|
|
990
994
|
this.g("DataToolTipValueTextFontStyle");
|
|
991
995
|
},
|
|
992
996
|
enumerable: false,
|
|
@@ -994,10 +998,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
994
998
|
});
|
|
995
999
|
Object.defineProperty(DomainChartDescription.prototype, "dataToolTipValueTextFontWeight", {
|
|
996
1000
|
get: function () {
|
|
997
|
-
return this.
|
|
1001
|
+
return this.mu;
|
|
998
1002
|
},
|
|
999
1003
|
set: function (a) {
|
|
1000
|
-
this.
|
|
1004
|
+
this.mu = a;
|
|
1001
1005
|
this.g("DataToolTipValueTextFontWeight");
|
|
1002
1006
|
},
|
|
1003
1007
|
enumerable: false,
|
|
@@ -1005,10 +1009,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1005
1009
|
});
|
|
1006
1010
|
Object.defineProperty(DomainChartDescription.prototype, "dataToolTipHeaderFormatString", {
|
|
1007
1011
|
get: function () {
|
|
1008
|
-
return this.
|
|
1012
|
+
return this.lh;
|
|
1009
1013
|
},
|
|
1010
1014
|
set: function (a) {
|
|
1011
|
-
this.
|
|
1015
|
+
this.lh = a;
|
|
1012
1016
|
this.g("DataToolTipHeaderFormatString");
|
|
1013
1017
|
},
|
|
1014
1018
|
enumerable: false,
|
|
@@ -1027,10 +1031,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1027
1031
|
});
|
|
1028
1032
|
Object.defineProperty(DomainChartDescription.prototype, "dataToolTipHeaderFormatCulture", {
|
|
1029
1033
|
get: function () {
|
|
1030
|
-
return this.
|
|
1034
|
+
return this.lf;
|
|
1031
1035
|
},
|
|
1032
1036
|
set: function (a) {
|
|
1033
|
-
this.
|
|
1037
|
+
this.lf = a;
|
|
1034
1038
|
this.g("DataToolTipHeaderFormatCulture");
|
|
1035
1039
|
},
|
|
1036
1040
|
enumerable: false,
|
|
@@ -1038,10 +1042,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1038
1042
|
});
|
|
1039
1043
|
Object.defineProperty(DomainChartDescription.prototype, "dataToolTipHeaderFormatDate", {
|
|
1040
1044
|
get: function () {
|
|
1041
|
-
return this.
|
|
1045
|
+
return this.lg;
|
|
1042
1046
|
},
|
|
1043
1047
|
set: function (a) {
|
|
1044
|
-
this.
|
|
1048
|
+
this.lg = a;
|
|
1045
1049
|
this.g("DataToolTipHeaderFormatDate");
|
|
1046
1050
|
},
|
|
1047
1051
|
enumerable: false,
|
|
@@ -1049,10 +1053,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1049
1053
|
});
|
|
1050
1054
|
Object.defineProperty(DomainChartDescription.prototype, "dataToolTipHeaderFormatTime", {
|
|
1051
1055
|
get: function () {
|
|
1052
|
-
return this.
|
|
1056
|
+
return this.li;
|
|
1053
1057
|
},
|
|
1054
1058
|
set: function (a) {
|
|
1055
|
-
this.
|
|
1059
|
+
this.li = a;
|
|
1056
1060
|
this.g("DataToolTipHeaderFormatTime");
|
|
1057
1061
|
},
|
|
1058
1062
|
enumerable: false,
|
|
@@ -1060,10 +1064,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1060
1064
|
});
|
|
1061
1065
|
Object.defineProperty(DomainChartDescription.prototype, "dataToolTipHeaderText", {
|
|
1062
1066
|
get: function () {
|
|
1063
|
-
return this.
|
|
1067
|
+
return this.lj;
|
|
1064
1068
|
},
|
|
1065
1069
|
set: function (a) {
|
|
1066
|
-
this.
|
|
1070
|
+
this.lj = a;
|
|
1067
1071
|
this.g("DataToolTipHeaderText");
|
|
1068
1072
|
},
|
|
1069
1073
|
enumerable: false,
|
|
@@ -1071,10 +1075,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1071
1075
|
});
|
|
1072
1076
|
Object.defineProperty(DomainChartDescription.prototype, "dataToolTipHeaderTextColor", {
|
|
1073
1077
|
get: function () {
|
|
1074
|
-
return this.
|
|
1078
|
+
return this.lk;
|
|
1075
1079
|
},
|
|
1076
1080
|
set: function (a) {
|
|
1077
|
-
this.
|
|
1081
|
+
this.lk = a;
|
|
1078
1082
|
this.g("DataToolTipHeaderTextColor");
|
|
1079
1083
|
},
|
|
1080
1084
|
enumerable: false,
|
|
@@ -1181,10 +1185,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1181
1185
|
});
|
|
1182
1186
|
Object.defineProperty(DomainChartDescription.prototype, "dataToolTipHeaderTextFontFamily", {
|
|
1183
1187
|
get: function () {
|
|
1184
|
-
return this.
|
|
1188
|
+
return this.ll;
|
|
1185
1189
|
},
|
|
1186
1190
|
set: function (a) {
|
|
1187
|
-
this.
|
|
1191
|
+
this.ll = a;
|
|
1188
1192
|
this.g("DataToolTipHeaderTextFontFamily");
|
|
1189
1193
|
},
|
|
1190
1194
|
enumerable: false,
|
|
@@ -1203,10 +1207,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1203
1207
|
});
|
|
1204
1208
|
Object.defineProperty(DomainChartDescription.prototype, "dataToolTipHeaderTextFontStyle", {
|
|
1205
1209
|
get: function () {
|
|
1206
|
-
return this.
|
|
1210
|
+
return this.lm;
|
|
1207
1211
|
},
|
|
1208
1212
|
set: function (a) {
|
|
1209
|
-
this.
|
|
1213
|
+
this.lm = a;
|
|
1210
1214
|
this.g("DataToolTipHeaderTextFontStyle");
|
|
1211
1215
|
},
|
|
1212
1216
|
enumerable: false,
|
|
@@ -1214,10 +1218,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1214
1218
|
});
|
|
1215
1219
|
Object.defineProperty(DomainChartDescription.prototype, "dataToolTipHeaderTextFontWeight", {
|
|
1216
1220
|
get: function () {
|
|
1217
|
-
return this.
|
|
1221
|
+
return this.ln;
|
|
1218
1222
|
},
|
|
1219
1223
|
set: function (a) {
|
|
1220
|
-
this.
|
|
1224
|
+
this.ln = a;
|
|
1221
1225
|
this.g("DataToolTipHeaderTextFontWeight");
|
|
1222
1226
|
},
|
|
1223
1227
|
enumerable: false,
|
|
@@ -1225,10 +1229,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1225
1229
|
});
|
|
1226
1230
|
Object.defineProperty(DomainChartDescription.prototype, "dataToolTipGroupTextColor", {
|
|
1227
1231
|
get: function () {
|
|
1228
|
-
return this.
|
|
1232
|
+
return this.lb;
|
|
1229
1233
|
},
|
|
1230
1234
|
set: function (a) {
|
|
1231
|
-
this.
|
|
1235
|
+
this.lb = a;
|
|
1232
1236
|
this.g("DataToolTipGroupTextColor");
|
|
1233
1237
|
},
|
|
1234
1238
|
enumerable: false,
|
|
@@ -1335,10 +1339,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1335
1339
|
});
|
|
1336
1340
|
Object.defineProperty(DomainChartDescription.prototype, "dataToolTipGroupTextFontFamily", {
|
|
1337
1341
|
get: function () {
|
|
1338
|
-
return this.
|
|
1342
|
+
return this.lc;
|
|
1339
1343
|
},
|
|
1340
1344
|
set: function (a) {
|
|
1341
|
-
this.
|
|
1345
|
+
this.lc = a;
|
|
1342
1346
|
this.g("DataToolTipGroupTextFontFamily");
|
|
1343
1347
|
},
|
|
1344
1348
|
enumerable: false,
|
|
@@ -1357,10 +1361,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1357
1361
|
});
|
|
1358
1362
|
Object.defineProperty(DomainChartDescription.prototype, "dataToolTipGroupTextFontStyle", {
|
|
1359
1363
|
get: function () {
|
|
1360
|
-
return this.
|
|
1364
|
+
return this.ld;
|
|
1361
1365
|
},
|
|
1362
1366
|
set: function (a) {
|
|
1363
|
-
this.
|
|
1367
|
+
this.ld = a;
|
|
1364
1368
|
this.g("DataToolTipGroupTextFontStyle");
|
|
1365
1369
|
},
|
|
1366
1370
|
enumerable: false,
|
|
@@ -1368,10 +1372,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1368
1372
|
});
|
|
1369
1373
|
Object.defineProperty(DomainChartDescription.prototype, "dataToolTipGroupTextFontWeight", {
|
|
1370
1374
|
get: function () {
|
|
1371
|
-
return this.
|
|
1375
|
+
return this.le;
|
|
1372
1376
|
},
|
|
1373
1377
|
set: function (a) {
|
|
1374
|
-
this.
|
|
1378
|
+
this.le = a;
|
|
1375
1379
|
this.g("DataToolTipGroupTextFontWeight");
|
|
1376
1380
|
},
|
|
1377
1381
|
enumerable: false,
|
|
@@ -1379,10 +1383,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1379
1383
|
});
|
|
1380
1384
|
Object.defineProperty(DomainChartDescription.prototype, "dataToolTipSummaryTitleTextColor", {
|
|
1381
1385
|
get: function () {
|
|
1382
|
-
return this.
|
|
1386
|
+
return this.lz;
|
|
1383
1387
|
},
|
|
1384
1388
|
set: function (a) {
|
|
1385
|
-
this.
|
|
1389
|
+
this.lz = a;
|
|
1386
1390
|
this.g("DataToolTipSummaryTitleTextColor");
|
|
1387
1391
|
},
|
|
1388
1392
|
enumerable: false,
|
|
@@ -1390,10 +1394,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1390
1394
|
});
|
|
1391
1395
|
Object.defineProperty(DomainChartDescription.prototype, "dataToolTipSummaryTitleTextFontFamily", {
|
|
1392
1396
|
get: function () {
|
|
1393
|
-
return this.
|
|
1397
|
+
return this.l0;
|
|
1394
1398
|
},
|
|
1395
1399
|
set: function (a) {
|
|
1396
|
-
this.
|
|
1400
|
+
this.l0 = a;
|
|
1397
1401
|
this.g("DataToolTipSummaryTitleTextFontFamily");
|
|
1398
1402
|
},
|
|
1399
1403
|
enumerable: false,
|
|
@@ -1412,10 +1416,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1412
1416
|
});
|
|
1413
1417
|
Object.defineProperty(DomainChartDescription.prototype, "dataToolTipSummaryTitleTextFontStyle", {
|
|
1414
1418
|
get: function () {
|
|
1415
|
-
return this.
|
|
1419
|
+
return this.l1;
|
|
1416
1420
|
},
|
|
1417
1421
|
set: function (a) {
|
|
1418
|
-
this.
|
|
1422
|
+
this.l1 = a;
|
|
1419
1423
|
this.g("DataToolTipSummaryTitleTextFontStyle");
|
|
1420
1424
|
},
|
|
1421
1425
|
enumerable: false,
|
|
@@ -1423,10 +1427,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1423
1427
|
});
|
|
1424
1428
|
Object.defineProperty(DomainChartDescription.prototype, "dataToolTipSummaryTitleTextFontWeight", {
|
|
1425
1429
|
get: function () {
|
|
1426
|
-
return this.
|
|
1430
|
+
return this.l2;
|
|
1427
1431
|
},
|
|
1428
1432
|
set: function (a) {
|
|
1429
|
-
this.
|
|
1433
|
+
this.l2 = a;
|
|
1430
1434
|
this.g("DataToolTipSummaryTitleTextFontWeight");
|
|
1431
1435
|
},
|
|
1432
1436
|
enumerable: false,
|
|
@@ -1434,10 +1438,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1434
1438
|
});
|
|
1435
1439
|
Object.defineProperty(DomainChartDescription.prototype, "dataToolTipSummaryType", {
|
|
1436
1440
|
get: function () {
|
|
1437
|
-
return this.
|
|
1441
|
+
return this.l3;
|
|
1438
1442
|
},
|
|
1439
1443
|
set: function (a) {
|
|
1440
|
-
this.
|
|
1444
|
+
this.l3 = a;
|
|
1441
1445
|
this.g("DataToolTipSummaryType");
|
|
1442
1446
|
},
|
|
1443
1447
|
enumerable: false,
|
|
@@ -1445,10 +1449,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1445
1449
|
});
|
|
1446
1450
|
Object.defineProperty(DomainChartDescription.prototype, "dataToolTipSummaryTitleText", {
|
|
1447
1451
|
get: function () {
|
|
1448
|
-
return this.
|
|
1452
|
+
return this.ly;
|
|
1449
1453
|
},
|
|
1450
1454
|
set: function (a) {
|
|
1451
|
-
this.
|
|
1455
|
+
this.ly = a;
|
|
1452
1456
|
this.g("DataToolTipSummaryTitleText");
|
|
1453
1457
|
},
|
|
1454
1458
|
enumerable: false,
|
|
@@ -1544,10 +1548,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1544
1548
|
});
|
|
1545
1549
|
Object.defineProperty(DomainChartDescription.prototype, "dataToolTipSummaryValueTextColor", {
|
|
1546
1550
|
get: function () {
|
|
1547
|
-
return this.
|
|
1551
|
+
return this.l9;
|
|
1548
1552
|
},
|
|
1549
1553
|
set: function (a) {
|
|
1550
|
-
this.
|
|
1554
|
+
this.l9 = a;
|
|
1551
1555
|
this.g("DataToolTipSummaryValueTextColor");
|
|
1552
1556
|
},
|
|
1553
1557
|
enumerable: false,
|
|
@@ -1555,10 +1559,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1555
1559
|
});
|
|
1556
1560
|
Object.defineProperty(DomainChartDescription.prototype, "dataToolTipSummaryValueTextFontFamily", {
|
|
1557
1561
|
get: function () {
|
|
1558
|
-
return this.
|
|
1562
|
+
return this.ma;
|
|
1559
1563
|
},
|
|
1560
1564
|
set: function (a) {
|
|
1561
|
-
this.
|
|
1565
|
+
this.ma = a;
|
|
1562
1566
|
this.g("DataToolTipSummaryValueTextFontFamily");
|
|
1563
1567
|
},
|
|
1564
1568
|
enumerable: false,
|
|
@@ -1577,10 +1581,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1577
1581
|
});
|
|
1578
1582
|
Object.defineProperty(DomainChartDescription.prototype, "dataToolTipSummaryValueTextFontStyle", {
|
|
1579
1583
|
get: function () {
|
|
1580
|
-
return this.
|
|
1584
|
+
return this.mb;
|
|
1581
1585
|
},
|
|
1582
1586
|
set: function (a) {
|
|
1583
|
-
this.
|
|
1587
|
+
this.mb = a;
|
|
1584
1588
|
this.g("DataToolTipSummaryValueTextFontStyle");
|
|
1585
1589
|
},
|
|
1586
1590
|
enumerable: false,
|
|
@@ -1588,10 +1592,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1588
1592
|
});
|
|
1589
1593
|
Object.defineProperty(DomainChartDescription.prototype, "dataToolTipSummaryValueTextFontWeight", {
|
|
1590
1594
|
get: function () {
|
|
1591
|
-
return this.
|
|
1595
|
+
return this.mc;
|
|
1592
1596
|
},
|
|
1593
1597
|
set: function (a) {
|
|
1594
|
-
this.
|
|
1598
|
+
this.mc = a;
|
|
1595
1599
|
this.g("DataToolTipSummaryValueTextFontWeight");
|
|
1596
1600
|
},
|
|
1597
1601
|
enumerable: false,
|
|
@@ -1599,10 +1603,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1599
1603
|
});
|
|
1600
1604
|
Object.defineProperty(DomainChartDescription.prototype, "dataToolTipSummaryLabelText", {
|
|
1601
1605
|
get: function () {
|
|
1602
|
-
return this.
|
|
1606
|
+
return this.lt;
|
|
1603
1607
|
},
|
|
1604
1608
|
set: function (a) {
|
|
1605
|
-
this.
|
|
1609
|
+
this.lt = a;
|
|
1606
1610
|
this.g("DataToolTipSummaryLabelText");
|
|
1607
1611
|
},
|
|
1608
1612
|
enumerable: false,
|
|
@@ -1610,10 +1614,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1610
1614
|
});
|
|
1611
1615
|
Object.defineProperty(DomainChartDescription.prototype, "dataToolTipSummaryLabelTextColor", {
|
|
1612
1616
|
get: function () {
|
|
1613
|
-
return this.
|
|
1617
|
+
return this.lu;
|
|
1614
1618
|
},
|
|
1615
1619
|
set: function (a) {
|
|
1616
|
-
this.
|
|
1620
|
+
this.lu = a;
|
|
1617
1621
|
this.g("DataToolTipSummaryLabelTextColor");
|
|
1618
1622
|
},
|
|
1619
1623
|
enumerable: false,
|
|
@@ -1621,10 +1625,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1621
1625
|
});
|
|
1622
1626
|
Object.defineProperty(DomainChartDescription.prototype, "dataToolTipSummaryLabelTextFontFamily", {
|
|
1623
1627
|
get: function () {
|
|
1624
|
-
return this.
|
|
1628
|
+
return this.lv;
|
|
1625
1629
|
},
|
|
1626
1630
|
set: function (a) {
|
|
1627
|
-
this.
|
|
1631
|
+
this.lv = a;
|
|
1628
1632
|
this.g("DataToolTipSummaryLabelTextFontFamily");
|
|
1629
1633
|
},
|
|
1630
1634
|
enumerable: false,
|
|
@@ -1643,10 +1647,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1643
1647
|
});
|
|
1644
1648
|
Object.defineProperty(DomainChartDescription.prototype, "dataToolTipSummaryLabelTextFontStyle", {
|
|
1645
1649
|
get: function () {
|
|
1646
|
-
return this.
|
|
1650
|
+
return this.lw;
|
|
1647
1651
|
},
|
|
1648
1652
|
set: function (a) {
|
|
1649
|
-
this.
|
|
1653
|
+
this.lw = a;
|
|
1650
1654
|
this.g("DataToolTipSummaryLabelTextFontStyle");
|
|
1651
1655
|
},
|
|
1652
1656
|
enumerable: false,
|
|
@@ -1654,10 +1658,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1654
1658
|
});
|
|
1655
1659
|
Object.defineProperty(DomainChartDescription.prototype, "dataToolTipSummaryLabelTextFontWeight", {
|
|
1656
1660
|
get: function () {
|
|
1657
|
-
return this.
|
|
1661
|
+
return this.lx;
|
|
1658
1662
|
},
|
|
1659
1663
|
set: function (a) {
|
|
1660
|
-
this.
|
|
1664
|
+
this.lx = a;
|
|
1661
1665
|
this.g("DataToolTipSummaryLabelTextFontWeight");
|
|
1662
1666
|
},
|
|
1663
1667
|
enumerable: false,
|
|
@@ -1665,10 +1669,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1665
1669
|
});
|
|
1666
1670
|
Object.defineProperty(DomainChartDescription.prototype, "dataToolTipSummaryUnitsText", {
|
|
1667
1671
|
get: function () {
|
|
1668
|
-
return this.
|
|
1672
|
+
return this.l4;
|
|
1669
1673
|
},
|
|
1670
1674
|
set: function (a) {
|
|
1671
|
-
this.
|
|
1675
|
+
this.l4 = a;
|
|
1672
1676
|
this.g("DataToolTipSummaryUnitsText");
|
|
1673
1677
|
},
|
|
1674
1678
|
enumerable: false,
|
|
@@ -1676,10 +1680,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1676
1680
|
});
|
|
1677
1681
|
Object.defineProperty(DomainChartDescription.prototype, "dataToolTipSummaryUnitsTextColor", {
|
|
1678
1682
|
get: function () {
|
|
1679
|
-
return this.
|
|
1683
|
+
return this.l5;
|
|
1680
1684
|
},
|
|
1681
1685
|
set: function (a) {
|
|
1682
|
-
this.
|
|
1686
|
+
this.l5 = a;
|
|
1683
1687
|
this.g("DataToolTipSummaryUnitsTextColor");
|
|
1684
1688
|
},
|
|
1685
1689
|
enumerable: false,
|
|
@@ -1687,10 +1691,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1687
1691
|
});
|
|
1688
1692
|
Object.defineProperty(DomainChartDescription.prototype, "dataToolTipSummaryUnitsTextFontFamily", {
|
|
1689
1693
|
get: function () {
|
|
1690
|
-
return this.
|
|
1694
|
+
return this.l6;
|
|
1691
1695
|
},
|
|
1692
1696
|
set: function (a) {
|
|
1693
|
-
this.
|
|
1697
|
+
this.l6 = a;
|
|
1694
1698
|
this.g("DataToolTipSummaryUnitsTextFontFamily");
|
|
1695
1699
|
},
|
|
1696
1700
|
enumerable: false,
|
|
@@ -1709,10 +1713,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1709
1713
|
});
|
|
1710
1714
|
Object.defineProperty(DomainChartDescription.prototype, "dataToolTipSummaryUnitsTextFontStyle", {
|
|
1711
1715
|
get: function () {
|
|
1712
|
-
return this.
|
|
1716
|
+
return this.l7;
|
|
1713
1717
|
},
|
|
1714
1718
|
set: function (a) {
|
|
1715
|
-
this.
|
|
1719
|
+
this.l7 = a;
|
|
1716
1720
|
this.g("DataToolTipSummaryUnitsTextFontStyle");
|
|
1717
1721
|
},
|
|
1718
1722
|
enumerable: false,
|
|
@@ -1720,10 +1724,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1720
1724
|
});
|
|
1721
1725
|
Object.defineProperty(DomainChartDescription.prototype, "dataToolTipSummaryUnitsTextFontWeight", {
|
|
1722
1726
|
get: function () {
|
|
1723
|
-
return this.
|
|
1727
|
+
return this.l8;
|
|
1724
1728
|
},
|
|
1725
1729
|
set: function (a) {
|
|
1726
|
-
this.
|
|
1730
|
+
this.l8 = a;
|
|
1727
1731
|
this.g("DataToolTipSummaryUnitsTextFontWeight");
|
|
1728
1732
|
},
|
|
1729
1733
|
enumerable: false,
|
|
@@ -1775,10 +1779,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1775
1779
|
});
|
|
1776
1780
|
Object.defineProperty(DomainChartDescription.prototype, "dataToolTipBadgeShape", {
|
|
1777
1781
|
get: function () {
|
|
1778
|
-
return this.
|
|
1782
|
+
return this.k7;
|
|
1779
1783
|
},
|
|
1780
1784
|
set: function (a) {
|
|
1781
|
-
this.
|
|
1785
|
+
this.k7 = a;
|
|
1782
1786
|
this.g("DataToolTipBadgeShape");
|
|
1783
1787
|
},
|
|
1784
1788
|
enumerable: false,
|
|
@@ -1786,10 +1790,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1786
1790
|
});
|
|
1787
1791
|
Object.defineProperty(DomainChartDescription.prototype, "dataToolTipUnitsDisplayMode", {
|
|
1788
1792
|
get: function () {
|
|
1789
|
-
return this.
|
|
1793
|
+
return this.mh;
|
|
1790
1794
|
},
|
|
1791
1795
|
set: function (a) {
|
|
1792
|
-
this.
|
|
1796
|
+
this.mh = a;
|
|
1793
1797
|
this.g("DataToolTipUnitsDisplayMode");
|
|
1794
1798
|
},
|
|
1795
1799
|
enumerable: false,
|
|
@@ -1797,10 +1801,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1797
1801
|
});
|
|
1798
1802
|
Object.defineProperty(DomainChartDescription.prototype, "dataToolTipUnitsText", {
|
|
1799
1803
|
get: function () {
|
|
1800
|
-
return this.
|
|
1804
|
+
return this.mi;
|
|
1801
1805
|
},
|
|
1802
1806
|
set: function (a) {
|
|
1803
|
-
this.
|
|
1807
|
+
this.mi = a;
|
|
1804
1808
|
this.g("DataToolTipUnitsText");
|
|
1805
1809
|
},
|
|
1806
1810
|
enumerable: false,
|
|
@@ -1808,10 +1812,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1808
1812
|
});
|
|
1809
1813
|
Object.defineProperty(DomainChartDescription.prototype, "dataToolTipUnitsTextColor", {
|
|
1810
1814
|
get: function () {
|
|
1811
|
-
return this.
|
|
1815
|
+
return this.mj;
|
|
1812
1816
|
},
|
|
1813
1817
|
set: function (a) {
|
|
1814
|
-
this.
|
|
1818
|
+
this.mj = a;
|
|
1815
1819
|
this.g("DataToolTipUnitsTextColor");
|
|
1816
1820
|
},
|
|
1817
1821
|
enumerable: false,
|
|
@@ -1863,10 +1867,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1863
1867
|
});
|
|
1864
1868
|
Object.defineProperty(DomainChartDescription.prototype, "dataToolTipUnitsTextFontFamily", {
|
|
1865
1869
|
get: function () {
|
|
1866
|
-
return this.
|
|
1870
|
+
return this.mk;
|
|
1867
1871
|
},
|
|
1868
1872
|
set: function (a) {
|
|
1869
|
-
this.
|
|
1873
|
+
this.mk = a;
|
|
1870
1874
|
this.g("DataToolTipUnitsTextFontFamily");
|
|
1871
1875
|
},
|
|
1872
1876
|
enumerable: false,
|
|
@@ -1885,10 +1889,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1885
1889
|
});
|
|
1886
1890
|
Object.defineProperty(DomainChartDescription.prototype, "dataToolTipUnitsTextFontStyle", {
|
|
1887
1891
|
get: function () {
|
|
1888
|
-
return this.
|
|
1892
|
+
return this.ml;
|
|
1889
1893
|
},
|
|
1890
1894
|
set: function (a) {
|
|
1891
|
-
this.
|
|
1895
|
+
this.ml = a;
|
|
1892
1896
|
this.g("DataToolTipUnitsTextFontStyle");
|
|
1893
1897
|
},
|
|
1894
1898
|
enumerable: false,
|
|
@@ -1896,10 +1900,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1896
1900
|
});
|
|
1897
1901
|
Object.defineProperty(DomainChartDescription.prototype, "dataToolTipUnitsTextFontWeight", {
|
|
1898
1902
|
get: function () {
|
|
1899
|
-
return this.
|
|
1903
|
+
return this.mm;
|
|
1900
1904
|
},
|
|
1901
1905
|
set: function (a) {
|
|
1902
|
-
this.
|
|
1906
|
+
this.mm = a;
|
|
1903
1907
|
this.g("DataToolTipUnitsTextFontWeight");
|
|
1904
1908
|
},
|
|
1905
1909
|
enumerable: false,
|
|
@@ -1951,10 +1955,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1951
1955
|
});
|
|
1952
1956
|
Object.defineProperty(DomainChartDescription.prototype, "dataToolTipTitleTextColor", {
|
|
1953
1957
|
get: function () {
|
|
1954
|
-
return this.
|
|
1958
|
+
return this.md;
|
|
1955
1959
|
},
|
|
1956
1960
|
set: function (a) {
|
|
1957
|
-
this.
|
|
1961
|
+
this.md = a;
|
|
1958
1962
|
this.g("DataToolTipTitleTextColor");
|
|
1959
1963
|
},
|
|
1960
1964
|
enumerable: false,
|
|
@@ -1962,10 +1966,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1962
1966
|
});
|
|
1963
1967
|
Object.defineProperty(DomainChartDescription.prototype, "dataToolTipTitleTextFontFamily", {
|
|
1964
1968
|
get: function () {
|
|
1965
|
-
return this.
|
|
1969
|
+
return this.me;
|
|
1966
1970
|
},
|
|
1967
1971
|
set: function (a) {
|
|
1968
|
-
this.
|
|
1972
|
+
this.me = a;
|
|
1969
1973
|
this.g("DataToolTipTitleTextFontFamily");
|
|
1970
1974
|
},
|
|
1971
1975
|
enumerable: false,
|
|
@@ -1984,10 +1988,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1984
1988
|
});
|
|
1985
1989
|
Object.defineProperty(DomainChartDescription.prototype, "dataToolTipTitleTextFontStyle", {
|
|
1986
1990
|
get: function () {
|
|
1987
|
-
return this.
|
|
1991
|
+
return this.mf;
|
|
1988
1992
|
},
|
|
1989
1993
|
set: function (a) {
|
|
1990
|
-
this.
|
|
1994
|
+
this.mf = a;
|
|
1991
1995
|
this.g("DataToolTipTitleTextFontStyle");
|
|
1992
1996
|
},
|
|
1993
1997
|
enumerable: false,
|
|
@@ -1995,10 +1999,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1995
1999
|
});
|
|
1996
2000
|
Object.defineProperty(DomainChartDescription.prototype, "dataToolTipTitleTextFontWeight", {
|
|
1997
2001
|
get: function () {
|
|
1998
|
-
return this.
|
|
2002
|
+
return this.mg;
|
|
1999
2003
|
},
|
|
2000
2004
|
set: function (a) {
|
|
2001
|
-
this.
|
|
2005
|
+
this.mg = a;
|
|
2002
2006
|
this.g("DataToolTipTitleTextFontWeight");
|
|
2003
2007
|
},
|
|
2004
2008
|
enumerable: false,
|
|
@@ -2006,10 +2010,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2006
2010
|
});
|
|
2007
2011
|
Object.defineProperty(DomainChartDescription.prototype, "dataToolTipLabelDisplayMode", {
|
|
2008
2012
|
get: function () {
|
|
2009
|
-
return this.
|
|
2013
|
+
return this.lo;
|
|
2010
2014
|
},
|
|
2011
2015
|
set: function (a) {
|
|
2012
|
-
this.
|
|
2016
|
+
this.lo = a;
|
|
2013
2017
|
this.g("DataToolTipLabelDisplayMode");
|
|
2014
2018
|
},
|
|
2015
2019
|
enumerable: false,
|
|
@@ -2017,10 +2021,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2017
2021
|
});
|
|
2018
2022
|
Object.defineProperty(DomainChartDescription.prototype, "dataToolTipLabelTextColor", {
|
|
2019
2023
|
get: function () {
|
|
2020
|
-
return this.
|
|
2024
|
+
return this.lp;
|
|
2021
2025
|
},
|
|
2022
2026
|
set: function (a) {
|
|
2023
|
-
this.
|
|
2027
|
+
this.lp = a;
|
|
2024
2028
|
this.g("DataToolTipLabelTextColor");
|
|
2025
2029
|
},
|
|
2026
2030
|
enumerable: false,
|
|
@@ -2072,10 +2076,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2072
2076
|
});
|
|
2073
2077
|
Object.defineProperty(DomainChartDescription.prototype, "dataToolTipLabelTextFontFamily", {
|
|
2074
2078
|
get: function () {
|
|
2075
|
-
return this.
|
|
2079
|
+
return this.lq;
|
|
2076
2080
|
},
|
|
2077
2081
|
set: function (a) {
|
|
2078
|
-
this.
|
|
2082
|
+
this.lq = a;
|
|
2079
2083
|
this.g("DataToolTipLabelTextFontFamily");
|
|
2080
2084
|
},
|
|
2081
2085
|
enumerable: false,
|
|
@@ -2094,10 +2098,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2094
2098
|
});
|
|
2095
2099
|
Object.defineProperty(DomainChartDescription.prototype, "dataToolTipLabelTextFontStyle", {
|
|
2096
2100
|
get: function () {
|
|
2097
|
-
return this.
|
|
2101
|
+
return this.lr;
|
|
2098
2102
|
},
|
|
2099
2103
|
set: function (a) {
|
|
2100
|
-
this.
|
|
2104
|
+
this.lr = a;
|
|
2101
2105
|
this.g("DataToolTipLabelTextFontStyle");
|
|
2102
2106
|
},
|
|
2103
2107
|
enumerable: false,
|
|
@@ -2105,10 +2109,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2105
2109
|
});
|
|
2106
2110
|
Object.defineProperty(DomainChartDescription.prototype, "dataToolTipLabelTextFontWeight", {
|
|
2107
2111
|
get: function () {
|
|
2108
|
-
return this.
|
|
2112
|
+
return this.ls;
|
|
2109
2113
|
},
|
|
2110
2114
|
set: function (a) {
|
|
2111
|
-
this.
|
|
2115
|
+
this.ls = a;
|
|
2112
2116
|
this.g("DataToolTipLabelTextFontWeight");
|
|
2113
2117
|
},
|
|
2114
2118
|
enumerable: false,
|
|
@@ -2182,10 +2186,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2182
2186
|
});
|
|
2183
2187
|
Object.defineProperty(DomainChartDescription.prototype, "selectionMode", {
|
|
2184
2188
|
get: function () {
|
|
2185
|
-
return this.
|
|
2189
|
+
return this.ny;
|
|
2186
2190
|
},
|
|
2187
2191
|
set: function (a) {
|
|
2188
|
-
this.
|
|
2192
|
+
this.ny = a;
|
|
2189
2193
|
this.g("SelectionMode");
|
|
2190
2194
|
},
|
|
2191
2195
|
enumerable: false,
|
|
@@ -2193,10 +2197,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2193
2197
|
});
|
|
2194
2198
|
Object.defineProperty(DomainChartDescription.prototype, "focusMode", {
|
|
2195
2199
|
get: function () {
|
|
2196
|
-
return this.
|
|
2200
|
+
return this.m1;
|
|
2197
2201
|
},
|
|
2198
2202
|
set: function (a) {
|
|
2199
|
-
this.
|
|
2203
|
+
this.m1 = a;
|
|
2200
2204
|
this.g("FocusMode");
|
|
2201
2205
|
},
|
|
2202
2206
|
enumerable: false,
|
|
@@ -2204,10 +2208,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2204
2208
|
});
|
|
2205
2209
|
Object.defineProperty(DomainChartDescription.prototype, "selectionBrush", {
|
|
2206
2210
|
get: function () {
|
|
2207
|
-
return this.
|
|
2211
|
+
return this.nx;
|
|
2208
2212
|
},
|
|
2209
2213
|
set: function (a) {
|
|
2210
|
-
this.
|
|
2214
|
+
this.nx = a;
|
|
2211
2215
|
this.g("SelectionBrush");
|
|
2212
2216
|
},
|
|
2213
2217
|
enumerable: false,
|
|
@@ -2215,10 +2219,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2215
2219
|
});
|
|
2216
2220
|
Object.defineProperty(DomainChartDescription.prototype, "focusBrush", {
|
|
2217
2221
|
get: function () {
|
|
2218
|
-
return this.
|
|
2222
|
+
return this.mz;
|
|
2219
2223
|
},
|
|
2220
2224
|
set: function (a) {
|
|
2221
|
-
this.
|
|
2225
|
+
this.mz = a;
|
|
2222
2226
|
this.g("FocusBrush");
|
|
2223
2227
|
},
|
|
2224
2228
|
enumerable: false,
|
|
@@ -2226,10 +2230,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2226
2230
|
});
|
|
2227
2231
|
Object.defineProperty(DomainChartDescription.prototype, "selectionBehavior", {
|
|
2228
2232
|
get: function () {
|
|
2229
|
-
return this.
|
|
2233
|
+
return this.nw;
|
|
2230
2234
|
},
|
|
2231
2235
|
set: function (a) {
|
|
2232
|
-
this.
|
|
2236
|
+
this.nw = a;
|
|
2233
2237
|
this.g("SelectionBehavior");
|
|
2234
2238
|
},
|
|
2235
2239
|
enumerable: false,
|
|
@@ -2325,10 +2329,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2325
2329
|
});
|
|
2326
2330
|
Object.defineProperty(DomainChartDescription.prototype, "initialSorts", {
|
|
2327
2331
|
get: function () {
|
|
2328
|
-
return this.
|
|
2332
|
+
return this.nf;
|
|
2329
2333
|
},
|
|
2330
2334
|
set: function (a) {
|
|
2331
|
-
this.
|
|
2335
|
+
this.nf = a;
|
|
2332
2336
|
this.g("InitialSorts");
|
|
2333
2337
|
},
|
|
2334
2338
|
enumerable: false,
|
|
@@ -2336,10 +2340,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2336
2340
|
});
|
|
2337
2341
|
Object.defineProperty(DomainChartDescription.prototype, "groupSorts", {
|
|
2338
2342
|
get: function () {
|
|
2339
|
-
return this.
|
|
2343
|
+
return this.m2;
|
|
2340
2344
|
},
|
|
2341
2345
|
set: function (a) {
|
|
2342
|
-
this.
|
|
2346
|
+
this.m2 = a;
|
|
2343
2347
|
this.g("GroupSorts");
|
|
2344
2348
|
},
|
|
2345
2349
|
enumerable: false,
|
|
@@ -2347,10 +2351,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2347
2351
|
});
|
|
2348
2352
|
Object.defineProperty(DomainChartDescription.prototype, "initialGroups", {
|
|
2349
2353
|
get: function () {
|
|
2350
|
-
return this.
|
|
2354
|
+
return this.nd;
|
|
2351
2355
|
},
|
|
2352
2356
|
set: function (a) {
|
|
2353
|
-
this.
|
|
2357
|
+
this.nd = a;
|
|
2354
2358
|
this.g("InitialGroups");
|
|
2355
2359
|
},
|
|
2356
2360
|
enumerable: false,
|
|
@@ -2358,10 +2362,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2358
2362
|
});
|
|
2359
2363
|
Object.defineProperty(DomainChartDescription.prototype, "initialFilter", {
|
|
2360
2364
|
get: function () {
|
|
2361
|
-
return this.
|
|
2365
|
+
return this.nc;
|
|
2362
2366
|
},
|
|
2363
2367
|
set: function (a) {
|
|
2364
|
-
this.
|
|
2368
|
+
this.nc = a;
|
|
2365
2369
|
this.g("InitialFilter");
|
|
2366
2370
|
},
|
|
2367
2371
|
enumerable: false,
|
|
@@ -2369,10 +2373,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2369
2373
|
});
|
|
2370
2374
|
Object.defineProperty(DomainChartDescription.prototype, "initialHighlightFilter", {
|
|
2371
2375
|
get: function () {
|
|
2372
|
-
return this.
|
|
2376
|
+
return this.ne;
|
|
2373
2377
|
},
|
|
2374
2378
|
set: function (a) {
|
|
2375
|
-
this.
|
|
2379
|
+
this.ne = a;
|
|
2376
2380
|
this.g("InitialHighlightFilter");
|
|
2377
2381
|
},
|
|
2378
2382
|
enumerable: false,
|
|
@@ -2380,10 +2384,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2380
2384
|
});
|
|
2381
2385
|
Object.defineProperty(DomainChartDescription.prototype, "initialSummaries", {
|
|
2382
2386
|
get: function () {
|
|
2383
|
-
return this.
|
|
2387
|
+
return this.ng;
|
|
2384
2388
|
},
|
|
2385
2389
|
set: function (a) {
|
|
2386
|
-
this.
|
|
2390
|
+
this.ng = a;
|
|
2387
2391
|
this.g("InitialSummaries");
|
|
2388
2392
|
},
|
|
2389
2393
|
enumerable: false,
|
|
@@ -2391,10 +2395,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2391
2395
|
});
|
|
2392
2396
|
Object.defineProperty(DomainChartDescription.prototype, "dataSourceRef", {
|
|
2393
2397
|
get: function () {
|
|
2394
|
-
return this.
|
|
2398
|
+
return this.k6;
|
|
2395
2399
|
},
|
|
2396
2400
|
set: function (a) {
|
|
2397
|
-
this.
|
|
2401
|
+
this.k6 = a;
|
|
2398
2402
|
this.g("DataSourceRef");
|
|
2399
2403
|
},
|
|
2400
2404
|
enumerable: false,
|
|
@@ -2413,10 +2417,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2413
2417
|
});
|
|
2414
2418
|
Object.defineProperty(DomainChartDescription.prototype, "highlightedDataSourceRef", {
|
|
2415
2419
|
get: function () {
|
|
2416
|
-
return this.
|
|
2420
|
+
return this.m3;
|
|
2417
2421
|
},
|
|
2418
2422
|
set: function (a) {
|
|
2419
|
-
this.
|
|
2423
|
+
this.m3 = a;
|
|
2420
2424
|
this.g("HighlightedDataSourceRef");
|
|
2421
2425
|
},
|
|
2422
2426
|
enumerable: false,
|
|
@@ -2501,10 +2505,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2501
2505
|
});
|
|
2502
2506
|
Object.defineProperty(DomainChartDescription.prototype, "legendRef", {
|
|
2503
2507
|
get: function () {
|
|
2504
|
-
return this.
|
|
2508
|
+
return this.nl;
|
|
2505
2509
|
},
|
|
2506
2510
|
set: function (a) {
|
|
2507
|
-
this.
|
|
2511
|
+
this.nl = a;
|
|
2508
2512
|
this.g("LegendRef");
|
|
2509
2513
|
},
|
|
2510
2514
|
enumerable: false,
|
|
@@ -2556,10 +2560,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2556
2560
|
});
|
|
2557
2561
|
Object.defineProperty(DomainChartDescription.prototype, "highlightedValuesDisplayMode", {
|
|
2558
2562
|
get: function () {
|
|
2559
|
-
return this.
|
|
2563
|
+
return this.m5;
|
|
2560
2564
|
},
|
|
2561
2565
|
set: function (a) {
|
|
2562
|
-
this.
|
|
2566
|
+
this.m5 = a;
|
|
2563
2567
|
this.g("HighlightedValuesDisplayMode");
|
|
2564
2568
|
},
|
|
2565
2569
|
enumerable: false,
|
|
@@ -2578,10 +2582,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2578
2582
|
});
|
|
2579
2583
|
Object.defineProperty(DomainChartDescription.prototype, "highlightedLegendItemVisibility", {
|
|
2580
2584
|
get: function () {
|
|
2581
|
-
return this.
|
|
2585
|
+
return this.m4;
|
|
2582
2586
|
},
|
|
2583
2587
|
set: function (a) {
|
|
2584
|
-
this.
|
|
2588
|
+
this.m4 = a;
|
|
2585
2589
|
this.g("HighlightedLegendItemVisibility");
|
|
2586
2590
|
},
|
|
2587
2591
|
enumerable: false,
|
|
@@ -2589,10 +2593,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2589
2593
|
});
|
|
2590
2594
|
Object.defineProperty(DomainChartDescription.prototype, "legendItemVisibility", {
|
|
2591
2595
|
get: function () {
|
|
2592
|
-
return this.
|
|
2596
|
+
return this.nk;
|
|
2593
2597
|
},
|
|
2594
2598
|
set: function (a) {
|
|
2595
|
-
this.
|
|
2599
|
+
this.nk = a;
|
|
2596
2600
|
this.g("LegendItemVisibility");
|
|
2597
2601
|
},
|
|
2598
2602
|
enumerable: false,
|
|
@@ -2611,10 +2615,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2611
2615
|
});
|
|
2612
2616
|
Object.defineProperty(DomainChartDescription.prototype, "chartTitle", {
|
|
2613
2617
|
get: function () {
|
|
2614
|
-
return this.
|
|
2618
|
+
return this.kx;
|
|
2615
2619
|
},
|
|
2616
2620
|
set: function (a) {
|
|
2617
|
-
this.
|
|
2621
|
+
this.kx = a;
|
|
2618
2622
|
this.g("ChartTitle");
|
|
2619
2623
|
},
|
|
2620
2624
|
enumerable: false,
|
|
@@ -2622,10 +2626,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2622
2626
|
});
|
|
2623
2627
|
Object.defineProperty(DomainChartDescription.prototype, "subtitle", {
|
|
2624
2628
|
get: function () {
|
|
2625
|
-
return this.
|
|
2629
|
+
return this.n9;
|
|
2626
2630
|
},
|
|
2627
2631
|
set: function (a) {
|
|
2628
|
-
this.
|
|
2632
|
+
this.n9 = a;
|
|
2629
2633
|
this.g("Subtitle");
|
|
2630
2634
|
},
|
|
2631
2635
|
enumerable: false,
|
|
@@ -2633,10 +2637,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2633
2637
|
});
|
|
2634
2638
|
Object.defineProperty(DomainChartDescription.prototype, "titleAlignment", {
|
|
2635
2639
|
get: function () {
|
|
2636
|
-
return this.
|
|
2640
|
+
return this.od;
|
|
2637
2641
|
},
|
|
2638
2642
|
set: function (a) {
|
|
2639
|
-
this.
|
|
2643
|
+
this.od = a;
|
|
2640
2644
|
this.g("TitleAlignment");
|
|
2641
2645
|
},
|
|
2642
2646
|
enumerable: false,
|
|
@@ -2644,10 +2648,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2644
2648
|
});
|
|
2645
2649
|
Object.defineProperty(DomainChartDescription.prototype, "subtitleAlignment", {
|
|
2646
2650
|
get: function () {
|
|
2647
|
-
return this.
|
|
2651
|
+
return this.oa;
|
|
2648
2652
|
},
|
|
2649
2653
|
set: function (a) {
|
|
2650
|
-
this.
|
|
2654
|
+
this.oa = a;
|
|
2651
2655
|
this.g("SubtitleAlignment");
|
|
2652
2656
|
},
|
|
2653
2657
|
enumerable: false,
|
|
@@ -2655,10 +2659,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2655
2659
|
});
|
|
2656
2660
|
Object.defineProperty(DomainChartDescription.prototype, "unknownValuePlotting", {
|
|
2657
2661
|
get: function () {
|
|
2658
|
-
return this.
|
|
2662
|
+
return this.oj;
|
|
2659
2663
|
},
|
|
2660
2664
|
set: function (a) {
|
|
2661
|
-
this.
|
|
2665
|
+
this.oj = a;
|
|
2662
2666
|
this.g("UnknownValuePlotting");
|
|
2663
2667
|
},
|
|
2664
2668
|
enumerable: false,
|
|
@@ -2666,10 +2670,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2666
2670
|
});
|
|
2667
2671
|
Object.defineProperty(DomainChartDescription.prototype, "resolution", {
|
|
2668
2672
|
get: function () {
|
|
2669
|
-
return this.
|
|
2673
|
+
return this.fv;
|
|
2670
2674
|
},
|
|
2671
2675
|
set: function (a) {
|
|
2672
|
-
this.
|
|
2676
|
+
this.fv = a;
|
|
2673
2677
|
this.g("Resolution");
|
|
2674
2678
|
},
|
|
2675
2679
|
enumerable: false,
|
|
@@ -2677,10 +2681,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2677
2681
|
});
|
|
2678
2682
|
Object.defineProperty(DomainChartDescription.prototype, "thickness", {
|
|
2679
2683
|
get: function () {
|
|
2680
|
-
return this.
|
|
2684
|
+
return this.f1;
|
|
2681
2685
|
},
|
|
2682
2686
|
set: function (a) {
|
|
2683
|
-
this.
|
|
2687
|
+
this.f1 = a;
|
|
2684
2688
|
this.g("Thickness");
|
|
2685
2689
|
},
|
|
2686
2690
|
enumerable: false,
|
|
@@ -2688,10 +2692,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2688
2692
|
});
|
|
2689
2693
|
Object.defineProperty(DomainChartDescription.prototype, "outlineMode", {
|
|
2690
2694
|
get: function () {
|
|
2691
|
-
return this.
|
|
2695
|
+
return this.np;
|
|
2692
2696
|
},
|
|
2693
2697
|
set: function (a) {
|
|
2694
|
-
this.
|
|
2698
|
+
this.np = a;
|
|
2695
2699
|
this.g("OutlineMode");
|
|
2696
2700
|
},
|
|
2697
2701
|
enumerable: false,
|
|
@@ -2699,10 +2703,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2699
2703
|
});
|
|
2700
2704
|
Object.defineProperty(DomainChartDescription.prototype, "markerOutlineMode", {
|
|
2701
2705
|
get: function () {
|
|
2702
|
-
return this.
|
|
2706
|
+
return this.no;
|
|
2703
2707
|
},
|
|
2704
2708
|
set: function (a) {
|
|
2705
|
-
this.
|
|
2709
|
+
this.no = a;
|
|
2706
2710
|
this.g("MarkerOutlineMode");
|
|
2707
2711
|
},
|
|
2708
2712
|
enumerable: false,
|
|
@@ -2710,10 +2714,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2710
2714
|
});
|
|
2711
2715
|
Object.defineProperty(DomainChartDescription.prototype, "markerFillMode", {
|
|
2712
2716
|
get: function () {
|
|
2713
|
-
return this.
|
|
2717
|
+
return this.nn;
|
|
2714
2718
|
},
|
|
2715
2719
|
set: function (a) {
|
|
2716
|
-
this.
|
|
2720
|
+
this.nn = a;
|
|
2717
2721
|
this.g("MarkerFillMode");
|
|
2718
2722
|
},
|
|
2719
2723
|
enumerable: false,
|
|
@@ -2721,10 +2725,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2721
2725
|
});
|
|
2722
2726
|
Object.defineProperty(DomainChartDescription.prototype, "markerFillOpacity", {
|
|
2723
2727
|
get: function () {
|
|
2724
|
-
return this.
|
|
2728
|
+
return this.fo;
|
|
2725
2729
|
},
|
|
2726
2730
|
set: function (a) {
|
|
2727
|
-
this.
|
|
2731
|
+
this.fo = a;
|
|
2728
2732
|
this.g("MarkerFillOpacity");
|
|
2729
2733
|
},
|
|
2730
2734
|
enumerable: false,
|
|
@@ -2732,10 +2736,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2732
2736
|
});
|
|
2733
2737
|
Object.defineProperty(DomainChartDescription.prototype, "markerThickness", {
|
|
2734
2738
|
get: function () {
|
|
2735
|
-
return this.
|
|
2739
|
+
return this.fp;
|
|
2736
2740
|
},
|
|
2737
2741
|
set: function (a) {
|
|
2738
|
-
this.
|
|
2742
|
+
this.fp = a;
|
|
2739
2743
|
this.g("MarkerThickness");
|
|
2740
2744
|
},
|
|
2741
2745
|
enumerable: false,
|
|
@@ -2754,10 +2758,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2754
2758
|
});
|
|
2755
2759
|
Object.defineProperty(DomainChartDescription.prototype, "markerAutomaticBehavior", {
|
|
2756
2760
|
get: function () {
|
|
2757
|
-
return this.
|
|
2761
|
+
return this.nm;
|
|
2758
2762
|
},
|
|
2759
2763
|
set: function (a) {
|
|
2760
|
-
this.
|
|
2764
|
+
this.nm = a;
|
|
2761
2765
|
this.g("MarkerAutomaticBehavior");
|
|
2762
2766
|
},
|
|
2763
2767
|
enumerable: false,
|
|
@@ -2787,10 +2791,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2787
2791
|
});
|
|
2788
2792
|
Object.defineProperty(DomainChartDescription.prototype, "markerMaxCount", {
|
|
2789
2793
|
get: function () {
|
|
2790
|
-
return this.
|
|
2794
|
+
return this.jw;
|
|
2791
2795
|
},
|
|
2792
2796
|
set: function (a) {
|
|
2793
|
-
this.
|
|
2797
|
+
this.jw = a;
|
|
2794
2798
|
this.g("MarkerMaxCount");
|
|
2795
2799
|
},
|
|
2796
2800
|
enumerable: false,
|
|
@@ -2831,10 +2835,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2831
2835
|
});
|
|
2832
2836
|
Object.defineProperty(DomainChartDescription.prototype, "trendLineType", {
|
|
2833
2837
|
get: function () {
|
|
2834
|
-
return this.
|
|
2838
|
+
return this.oi;
|
|
2835
2839
|
},
|
|
2836
2840
|
set: function (a) {
|
|
2837
|
-
this.
|
|
2841
|
+
this.oi = a;
|
|
2838
2842
|
this.g("TrendLineType");
|
|
2839
2843
|
},
|
|
2840
2844
|
enumerable: false,
|
|
@@ -2842,10 +2846,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2842
2846
|
});
|
|
2843
2847
|
Object.defineProperty(DomainChartDescription.prototype, "trendLineThickness", {
|
|
2844
2848
|
get: function () {
|
|
2845
|
-
return this.
|
|
2849
|
+
return this.f7;
|
|
2846
2850
|
},
|
|
2847
2851
|
set: function (a) {
|
|
2848
|
-
this.
|
|
2852
|
+
this.f7 = a;
|
|
2849
2853
|
this.g("TrendLineThickness");
|
|
2850
2854
|
},
|
|
2851
2855
|
enumerable: false,
|
|
@@ -2886,10 +2890,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2886
2890
|
});
|
|
2887
2891
|
Object.defineProperty(DomainChartDescription.prototype, "plotAreaMarginLeft", {
|
|
2888
2892
|
get: function () {
|
|
2889
|
-
return this.
|
|
2893
|
+
return this.fs;
|
|
2890
2894
|
},
|
|
2891
2895
|
set: function (a) {
|
|
2892
|
-
this.
|
|
2896
|
+
this.fs = a;
|
|
2893
2897
|
this.g("PlotAreaMarginLeft");
|
|
2894
2898
|
},
|
|
2895
2899
|
enumerable: false,
|
|
@@ -2897,10 +2901,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2897
2901
|
});
|
|
2898
2902
|
Object.defineProperty(DomainChartDescription.prototype, "plotAreaMarginTop", {
|
|
2899
2903
|
get: function () {
|
|
2900
|
-
return this.
|
|
2904
|
+
return this.fu;
|
|
2901
2905
|
},
|
|
2902
2906
|
set: function (a) {
|
|
2903
|
-
this.
|
|
2907
|
+
this.fu = a;
|
|
2904
2908
|
this.g("PlotAreaMarginTop");
|
|
2905
2909
|
},
|
|
2906
2910
|
enumerable: false,
|
|
@@ -2908,10 +2912,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2908
2912
|
});
|
|
2909
2913
|
Object.defineProperty(DomainChartDescription.prototype, "plotAreaMarginRight", {
|
|
2910
2914
|
get: function () {
|
|
2911
|
-
return this.
|
|
2915
|
+
return this.ft;
|
|
2912
2916
|
},
|
|
2913
2917
|
set: function (a) {
|
|
2914
|
-
this.
|
|
2918
|
+
this.ft = a;
|
|
2915
2919
|
this.g("PlotAreaMarginRight");
|
|
2916
2920
|
},
|
|
2917
2921
|
enumerable: false,
|
|
@@ -2919,21 +2923,54 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2919
2923
|
});
|
|
2920
2924
|
Object.defineProperty(DomainChartDescription.prototype, "plotAreaMarginBottom", {
|
|
2921
2925
|
get: function () {
|
|
2922
|
-
return this.
|
|
2926
|
+
return this.fr;
|
|
2923
2927
|
},
|
|
2924
2928
|
set: function (a) {
|
|
2925
|
-
this.
|
|
2929
|
+
this.fr = a;
|
|
2926
2930
|
this.g("PlotAreaMarginBottom");
|
|
2927
2931
|
},
|
|
2928
2932
|
enumerable: false,
|
|
2929
2933
|
configurable: true
|
|
2930
2934
|
});
|
|
2935
|
+
Object.defineProperty(DomainChartDescription.prototype, "highlightingDismissDelayMilliseconds", {
|
|
2936
|
+
get: function () {
|
|
2937
|
+
return this.ju;
|
|
2938
|
+
},
|
|
2939
|
+
set: function (a) {
|
|
2940
|
+
this.ju = a;
|
|
2941
|
+
this.g("HighlightingDismissDelayMilliseconds");
|
|
2942
|
+
},
|
|
2943
|
+
enumerable: false,
|
|
2944
|
+
configurable: true
|
|
2945
|
+
});
|
|
2946
|
+
Object.defineProperty(DomainChartDescription.prototype, "focusDismissDelayMilliseconds", {
|
|
2947
|
+
get: function () {
|
|
2948
|
+
return this.js;
|
|
2949
|
+
},
|
|
2950
|
+
set: function (a) {
|
|
2951
|
+
this.js = a;
|
|
2952
|
+
this.g("FocusDismissDelayMilliseconds");
|
|
2953
|
+
},
|
|
2954
|
+
enumerable: false,
|
|
2955
|
+
configurable: true
|
|
2956
|
+
});
|
|
2957
|
+
Object.defineProperty(DomainChartDescription.prototype, "selectionDismissDelayMilliseconds", {
|
|
2958
|
+
get: function () {
|
|
2959
|
+
return this.jx;
|
|
2960
|
+
},
|
|
2961
|
+
set: function (a) {
|
|
2962
|
+
this.jx = a;
|
|
2963
|
+
this.g("SelectionDismissDelayMilliseconds");
|
|
2964
|
+
},
|
|
2965
|
+
enumerable: false,
|
|
2966
|
+
configurable: true
|
|
2967
|
+
});
|
|
2931
2968
|
Object.defineProperty(DomainChartDescription.prototype, "computedPlotAreaMarginMode", {
|
|
2932
2969
|
get: function () {
|
|
2933
|
-
return this.
|
|
2970
|
+
return this.ky;
|
|
2934
2971
|
},
|
|
2935
2972
|
set: function (a) {
|
|
2936
|
-
this.
|
|
2973
|
+
this.ky = a;
|
|
2937
2974
|
this.g("ComputedPlotAreaMarginMode");
|
|
2938
2975
|
},
|
|
2939
2976
|
enumerable: false,
|
|
@@ -2941,10 +2978,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2941
2978
|
});
|
|
2942
2979
|
Object.defineProperty(DomainChartDescription.prototype, "seriesPlotAreaMarginHorizontalMode", {
|
|
2943
2980
|
get: function () {
|
|
2944
|
-
return this.
|
|
2981
|
+
return this.n1;
|
|
2945
2982
|
},
|
|
2946
2983
|
set: function (a) {
|
|
2947
|
-
this.
|
|
2984
|
+
this.n1 = a;
|
|
2948
2985
|
this.g("SeriesPlotAreaMarginHorizontalMode");
|
|
2949
2986
|
},
|
|
2950
2987
|
enumerable: false,
|
|
@@ -2952,10 +2989,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2952
2989
|
});
|
|
2953
2990
|
Object.defineProperty(DomainChartDescription.prototype, "seriesPlotAreaMarginVerticalMode", {
|
|
2954
2991
|
get: function () {
|
|
2955
|
-
return this.
|
|
2992
|
+
return this.n2;
|
|
2956
2993
|
},
|
|
2957
2994
|
set: function (a) {
|
|
2958
|
-
this.
|
|
2995
|
+
this.n2 = a;
|
|
2959
2996
|
this.g("SeriesPlotAreaMarginVerticalMode");
|
|
2960
2997
|
},
|
|
2961
2998
|
enumerable: false,
|
|
@@ -2963,10 +3000,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2963
3000
|
});
|
|
2964
3001
|
Object.defineProperty(DomainChartDescription.prototype, "highlightingMode", {
|
|
2965
3002
|
get: function () {
|
|
2966
|
-
return this.
|
|
3003
|
+
return this.m7;
|
|
2967
3004
|
},
|
|
2968
3005
|
set: function (a) {
|
|
2969
|
-
this.
|
|
3006
|
+
this.m7 = a;
|
|
2970
3007
|
this.g("HighlightingMode");
|
|
2971
3008
|
},
|
|
2972
3009
|
enumerable: false,
|
|
@@ -2974,21 +3011,32 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2974
3011
|
});
|
|
2975
3012
|
Object.defineProperty(DomainChartDescription.prototype, "highlightingBehavior", {
|
|
2976
3013
|
get: function () {
|
|
2977
|
-
return this.
|
|
3014
|
+
return this.m6;
|
|
2978
3015
|
},
|
|
2979
3016
|
set: function (a) {
|
|
2980
|
-
this.
|
|
3017
|
+
this.m6 = a;
|
|
2981
3018
|
this.g("HighlightingBehavior");
|
|
2982
3019
|
},
|
|
2983
3020
|
enumerable: false,
|
|
2984
3021
|
configurable: true
|
|
2985
3022
|
});
|
|
3023
|
+
Object.defineProperty(DomainChartDescription.prototype, "highlightingFadeOpacity", {
|
|
3024
|
+
get: function () {
|
|
3025
|
+
return this.ff;
|
|
3026
|
+
},
|
|
3027
|
+
set: function (a) {
|
|
3028
|
+
this.ff = a;
|
|
3029
|
+
this.g("HighlightingFadeOpacity");
|
|
3030
|
+
},
|
|
3031
|
+
enumerable: false,
|
|
3032
|
+
configurable: true
|
|
3033
|
+
});
|
|
2986
3034
|
Object.defineProperty(DomainChartDescription.prototype, "legendHighlightingMode", {
|
|
2987
3035
|
get: function () {
|
|
2988
|
-
return this.
|
|
3036
|
+
return this.nh;
|
|
2989
3037
|
},
|
|
2990
3038
|
set: function (a) {
|
|
2991
|
-
this.
|
|
3039
|
+
this.nh = a;
|
|
2992
3040
|
this.g("LegendHighlightingMode");
|
|
2993
3041
|
},
|
|
2994
3042
|
enumerable: false,
|
|
@@ -2996,10 +3044,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2996
3044
|
});
|
|
2997
3045
|
Object.defineProperty(DomainChartDescription.prototype, "legendItemBadgeShape", {
|
|
2998
3046
|
get: function () {
|
|
2999
|
-
return this.
|
|
3047
|
+
return this.nj;
|
|
3000
3048
|
},
|
|
3001
3049
|
set: function (a) {
|
|
3002
|
-
this.
|
|
3050
|
+
this.nj = a;
|
|
3003
3051
|
this.g("LegendItemBadgeShape");
|
|
3004
3052
|
},
|
|
3005
3053
|
enumerable: false,
|
|
@@ -3007,10 +3055,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3007
3055
|
});
|
|
3008
3056
|
Object.defineProperty(DomainChartDescription.prototype, "legendItemBadgeMode", {
|
|
3009
3057
|
get: function () {
|
|
3010
|
-
return this.
|
|
3058
|
+
return this.ni;
|
|
3011
3059
|
},
|
|
3012
3060
|
set: function (a) {
|
|
3013
|
-
this.
|
|
3061
|
+
this.ni = a;
|
|
3014
3062
|
this.g("LegendItemBadgeMode");
|
|
3015
3063
|
},
|
|
3016
3064
|
enumerable: false,
|
|
@@ -3018,10 +3066,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3018
3066
|
});
|
|
3019
3067
|
Object.defineProperty(DomainChartDescription.prototype, "trendLinePeriod", {
|
|
3020
3068
|
get: function () {
|
|
3021
|
-
return this.
|
|
3069
|
+
return this.j0;
|
|
3022
3070
|
},
|
|
3023
3071
|
set: function (a) {
|
|
3024
|
-
this.
|
|
3072
|
+
this.j0 = a;
|
|
3025
3073
|
this.g("TrendLinePeriod");
|
|
3026
3074
|
},
|
|
3027
3075
|
enumerable: false,
|
|
@@ -3029,10 +3077,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3029
3077
|
});
|
|
3030
3078
|
Object.defineProperty(DomainChartDescription.prototype, "toolTipType", {
|
|
3031
3079
|
get: function () {
|
|
3032
|
-
return this.
|
|
3080
|
+
return this.og;
|
|
3033
3081
|
},
|
|
3034
3082
|
set: function (a) {
|
|
3035
|
-
this.
|
|
3083
|
+
this.og = a;
|
|
3036
3084
|
this.g("ToolTipType");
|
|
3037
3085
|
},
|
|
3038
3086
|
enumerable: false,
|
|
@@ -3040,10 +3088,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3040
3088
|
});
|
|
3041
3089
|
Object.defineProperty(DomainChartDescription.prototype, "crosshairsDisplayMode", {
|
|
3042
3090
|
get: function () {
|
|
3043
|
-
return this.
|
|
3091
|
+
return this.k3;
|
|
3044
3092
|
},
|
|
3045
3093
|
set: function (a) {
|
|
3046
|
-
this.
|
|
3094
|
+
this.k3 = a;
|
|
3047
3095
|
this.g("CrosshairsDisplayMode");
|
|
3048
3096
|
},
|
|
3049
3097
|
enumerable: false,
|
|
@@ -3062,10 +3110,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3062
3110
|
});
|
|
3063
3111
|
Object.defineProperty(DomainChartDescription.prototype, "crosshairsLineVerticalStroke", {
|
|
3064
3112
|
get: function () {
|
|
3065
|
-
return this.
|
|
3113
|
+
return this.k5;
|
|
3066
3114
|
},
|
|
3067
3115
|
set: function (a) {
|
|
3068
|
-
this.
|
|
3116
|
+
this.k5 = a;
|
|
3069
3117
|
this.g("CrosshairsLineVerticalStroke");
|
|
3070
3118
|
},
|
|
3071
3119
|
enumerable: false,
|
|
@@ -3084,10 +3132,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3084
3132
|
});
|
|
3085
3133
|
Object.defineProperty(DomainChartDescription.prototype, "crosshairsLineHorizontalStroke", {
|
|
3086
3134
|
get: function () {
|
|
3087
|
-
return this.
|
|
3135
|
+
return this.k4;
|
|
3088
3136
|
},
|
|
3089
3137
|
set: function (a) {
|
|
3090
|
-
this.
|
|
3138
|
+
this.k4 = a;
|
|
3091
3139
|
this.g("CrosshairsLineHorizontalStroke");
|
|
3092
3140
|
},
|
|
3093
3141
|
enumerable: false,
|
|
@@ -3128,10 +3176,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3128
3176
|
});
|
|
3129
3177
|
Object.defineProperty(DomainChartDescription.prototype, "crosshairsAnnotationXAxisBackground", {
|
|
3130
3178
|
get: function () {
|
|
3131
|
-
return this.
|
|
3179
|
+
return this.kz;
|
|
3132
3180
|
},
|
|
3133
3181
|
set: function (a) {
|
|
3134
|
-
this.
|
|
3182
|
+
this.kz = a;
|
|
3135
3183
|
this.g("CrosshairsAnnotationXAxisBackground");
|
|
3136
3184
|
},
|
|
3137
3185
|
enumerable: false,
|
|
@@ -3139,10 +3187,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3139
3187
|
});
|
|
3140
3188
|
Object.defineProperty(DomainChartDescription.prototype, "crosshairsAnnotationYAxisBackground", {
|
|
3141
3189
|
get: function () {
|
|
3142
|
-
return this.
|
|
3190
|
+
return this.k1;
|
|
3143
3191
|
},
|
|
3144
3192
|
set: function (a) {
|
|
3145
|
-
this.
|
|
3193
|
+
this.k1 = a;
|
|
3146
3194
|
this.g("CrosshairsAnnotationYAxisBackground");
|
|
3147
3195
|
},
|
|
3148
3196
|
enumerable: false,
|
|
@@ -3150,10 +3198,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3150
3198
|
});
|
|
3151
3199
|
Object.defineProperty(DomainChartDescription.prototype, "crosshairsAnnotationXAxisTextColor", {
|
|
3152
3200
|
get: function () {
|
|
3153
|
-
return this.
|
|
3201
|
+
return this.k0;
|
|
3154
3202
|
},
|
|
3155
3203
|
set: function (a) {
|
|
3156
|
-
this.
|
|
3204
|
+
this.k0 = a;
|
|
3157
3205
|
this.g("CrosshairsAnnotationXAxisTextColor");
|
|
3158
3206
|
},
|
|
3159
3207
|
enumerable: false,
|
|
@@ -3161,10 +3209,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3161
3209
|
});
|
|
3162
3210
|
Object.defineProperty(DomainChartDescription.prototype, "crosshairsAnnotationYAxisTextColor", {
|
|
3163
3211
|
get: function () {
|
|
3164
|
-
return this.
|
|
3212
|
+
return this.k2;
|
|
3165
3213
|
},
|
|
3166
3214
|
set: function (a) {
|
|
3167
|
-
this.
|
|
3215
|
+
this.k2 = a;
|
|
3168
3216
|
this.g("CrosshairsAnnotationYAxisTextColor");
|
|
3169
3217
|
},
|
|
3170
3218
|
enumerable: false,
|
|
@@ -3172,10 +3220,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3172
3220
|
});
|
|
3173
3221
|
Object.defineProperty(DomainChartDescription.prototype, "crosshairsAnnotationXAxisPrecision", {
|
|
3174
3222
|
get: function () {
|
|
3175
|
-
return this.
|
|
3223
|
+
return this.jn;
|
|
3176
3224
|
},
|
|
3177
3225
|
set: function (a) {
|
|
3178
|
-
this.
|
|
3226
|
+
this.jn = a;
|
|
3179
3227
|
this.g("CrosshairsAnnotationXAxisPrecision");
|
|
3180
3228
|
},
|
|
3181
3229
|
enumerable: false,
|
|
@@ -3183,10 +3231,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3183
3231
|
});
|
|
3184
3232
|
Object.defineProperty(DomainChartDescription.prototype, "crosshairsAnnotationYAxisPrecision", {
|
|
3185
3233
|
get: function () {
|
|
3186
|
-
return this.
|
|
3234
|
+
return this.jo;
|
|
3187
3235
|
},
|
|
3188
3236
|
set: function (a) {
|
|
3189
|
-
this.
|
|
3237
|
+
this.jo = a;
|
|
3190
3238
|
this.g("CrosshairsAnnotationYAxisPrecision");
|
|
3191
3239
|
},
|
|
3192
3240
|
enumerable: false,
|
|
@@ -3227,10 +3275,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3227
3275
|
});
|
|
3228
3276
|
Object.defineProperty(DomainChartDescription.prototype, "finalValueAnnotationsBackground", {
|
|
3229
3277
|
get: function () {
|
|
3230
|
-
return this.
|
|
3278
|
+
return this.mx;
|
|
3231
3279
|
},
|
|
3232
3280
|
set: function (a) {
|
|
3233
|
-
this.
|
|
3281
|
+
this.mx = a;
|
|
3234
3282
|
this.g("FinalValueAnnotationsBackground");
|
|
3235
3283
|
},
|
|
3236
3284
|
enumerable: false,
|
|
@@ -3238,10 +3286,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3238
3286
|
});
|
|
3239
3287
|
Object.defineProperty(DomainChartDescription.prototype, "finalValueAnnotationsTextColor", {
|
|
3240
3288
|
get: function () {
|
|
3241
|
-
return this.
|
|
3289
|
+
return this.my;
|
|
3242
3290
|
},
|
|
3243
3291
|
set: function (a) {
|
|
3244
|
-
this.
|
|
3292
|
+
this.my = a;
|
|
3245
3293
|
this.g("FinalValueAnnotationsTextColor");
|
|
3246
3294
|
},
|
|
3247
3295
|
enumerable: false,
|
|
@@ -3249,10 +3297,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3249
3297
|
});
|
|
3250
3298
|
Object.defineProperty(DomainChartDescription.prototype, "finalValueAnnotationsPrecision", {
|
|
3251
3299
|
get: function () {
|
|
3252
|
-
return this.
|
|
3300
|
+
return this.jr;
|
|
3253
3301
|
},
|
|
3254
3302
|
set: function (a) {
|
|
3255
|
-
this.
|
|
3303
|
+
this.jr = a;
|
|
3256
3304
|
this.g("FinalValueAnnotationsPrecision");
|
|
3257
3305
|
},
|
|
3258
3306
|
enumerable: false,
|
|
@@ -3304,10 +3352,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3304
3352
|
});
|
|
3305
3353
|
Object.defineProperty(DomainChartDescription.prototype, "calloutCollisionMode", {
|
|
3306
3354
|
get: function () {
|
|
3307
|
-
return this.
|
|
3355
|
+
return this.kg;
|
|
3308
3356
|
},
|
|
3309
3357
|
set: function (a) {
|
|
3310
|
-
this.
|
|
3358
|
+
this.kg = a;
|
|
3311
3359
|
this.g("CalloutCollisionMode");
|
|
3312
3360
|
},
|
|
3313
3361
|
enumerable: false,
|
|
@@ -3359,10 +3407,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3359
3407
|
});
|
|
3360
3408
|
Object.defineProperty(DomainChartDescription.prototype, "calloutsBackground", {
|
|
3361
3409
|
get: function () {
|
|
3362
|
-
return this.
|
|
3410
|
+
return this.ki;
|
|
3363
3411
|
},
|
|
3364
3412
|
set: function (a) {
|
|
3365
|
-
this.
|
|
3413
|
+
this.ki = a;
|
|
3366
3414
|
this.g("CalloutsBackground");
|
|
3367
3415
|
},
|
|
3368
3416
|
enumerable: false,
|
|
@@ -3370,10 +3418,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3370
3418
|
});
|
|
3371
3419
|
Object.defineProperty(DomainChartDescription.prototype, "calloutsOutline", {
|
|
3372
3420
|
get: function () {
|
|
3373
|
-
return this.
|
|
3421
|
+
return this.ks;
|
|
3374
3422
|
},
|
|
3375
3423
|
set: function (a) {
|
|
3376
|
-
this.
|
|
3424
|
+
this.ks = a;
|
|
3377
3425
|
this.g("CalloutsOutline");
|
|
3378
3426
|
},
|
|
3379
3427
|
enumerable: false,
|
|
@@ -3381,10 +3429,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3381
3429
|
});
|
|
3382
3430
|
Object.defineProperty(DomainChartDescription.prototype, "calloutsTextColor", {
|
|
3383
3431
|
get: function () {
|
|
3384
|
-
return this.
|
|
3432
|
+
return this.kt;
|
|
3385
3433
|
},
|
|
3386
3434
|
set: function (a) {
|
|
3387
|
-
this.
|
|
3435
|
+
this.kt = a;
|
|
3388
3436
|
this.g("CalloutsTextColor");
|
|
3389
3437
|
},
|
|
3390
3438
|
enumerable: false,
|
|
@@ -3392,10 +3440,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3392
3440
|
});
|
|
3393
3441
|
Object.defineProperty(DomainChartDescription.prototype, "calloutsLightTextColor", {
|
|
3394
3442
|
get: function () {
|
|
3395
|
-
return this.
|
|
3443
|
+
return this.kr;
|
|
3396
3444
|
},
|
|
3397
3445
|
set: function (a) {
|
|
3398
|
-
this.
|
|
3446
|
+
this.kr = a;
|
|
3399
3447
|
this.g("CalloutsLightTextColor");
|
|
3400
3448
|
},
|
|
3401
3449
|
enumerable: false,
|
|
@@ -3403,10 +3451,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3403
3451
|
});
|
|
3404
3452
|
Object.defineProperty(DomainChartDescription.prototype, "calloutsDarkTextColor", {
|
|
3405
3453
|
get: function () {
|
|
3406
|
-
return this.
|
|
3454
|
+
return this.kk;
|
|
3407
3455
|
},
|
|
3408
3456
|
set: function (a) {
|
|
3409
|
-
this.
|
|
3457
|
+
this.kk = a;
|
|
3410
3458
|
this.g("CalloutsDarkTextColor");
|
|
3411
3459
|
},
|
|
3412
3460
|
enumerable: false,
|
|
@@ -3414,10 +3462,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3414
3462
|
});
|
|
3415
3463
|
Object.defineProperty(DomainChartDescription.prototype, "calloutsLeaderBrush", {
|
|
3416
3464
|
get: function () {
|
|
3417
|
-
return this.
|
|
3465
|
+
return this.kq;
|
|
3418
3466
|
},
|
|
3419
3467
|
set: function (a) {
|
|
3420
|
-
this.
|
|
3468
|
+
this.kq = a;
|
|
3421
3469
|
this.g("CalloutsLeaderBrush");
|
|
3422
3470
|
},
|
|
3423
3471
|
enumerable: false,
|
|
@@ -3425,10 +3473,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3425
3473
|
});
|
|
3426
3474
|
Object.defineProperty(DomainChartDescription.prototype, "calloutsAutoLabelPrecision", {
|
|
3427
3475
|
get: function () {
|
|
3428
|
-
return this.
|
|
3476
|
+
return this.jm;
|
|
3429
3477
|
},
|
|
3430
3478
|
set: function (a) {
|
|
3431
|
-
this.
|
|
3479
|
+
this.jm = a;
|
|
3432
3480
|
this.g("CalloutsAutoLabelPrecision");
|
|
3433
3481
|
},
|
|
3434
3482
|
enumerable: false,
|
|
@@ -3436,10 +3484,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3436
3484
|
});
|
|
3437
3485
|
Object.defineProperty(DomainChartDescription.prototype, "calloutsDataSourceRef", {
|
|
3438
3486
|
get: function () {
|
|
3439
|
-
return this.
|
|
3487
|
+
return this.kl;
|
|
3440
3488
|
},
|
|
3441
3489
|
set: function (a) {
|
|
3442
|
-
this.
|
|
3490
|
+
this.kl = a;
|
|
3443
3491
|
this.g("CalloutsDataSourceRef");
|
|
3444
3492
|
},
|
|
3445
3493
|
enumerable: false,
|
|
@@ -3458,10 +3506,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3458
3506
|
});
|
|
3459
3507
|
Object.defineProperty(DomainChartDescription.prototype, "calloutsXMemberPath", {
|
|
3460
3508
|
get: function () {
|
|
3461
|
-
return this.
|
|
3509
|
+
return this.kv;
|
|
3462
3510
|
},
|
|
3463
3511
|
set: function (a) {
|
|
3464
|
-
this.
|
|
3512
|
+
this.kv = a;
|
|
3465
3513
|
this.g("CalloutsXMemberPath");
|
|
3466
3514
|
},
|
|
3467
3515
|
enumerable: false,
|
|
@@ -3469,10 +3517,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3469
3517
|
});
|
|
3470
3518
|
Object.defineProperty(DomainChartDescription.prototype, "calloutsYMemberPath", {
|
|
3471
3519
|
get: function () {
|
|
3472
|
-
return this.
|
|
3520
|
+
return this.kw;
|
|
3473
3521
|
},
|
|
3474
3522
|
set: function (a) {
|
|
3475
|
-
this.
|
|
3523
|
+
this.kw = a;
|
|
3476
3524
|
this.g("CalloutsYMemberPath");
|
|
3477
3525
|
},
|
|
3478
3526
|
enumerable: false,
|
|
@@ -3480,10 +3528,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3480
3528
|
});
|
|
3481
3529
|
Object.defineProperty(DomainChartDescription.prototype, "calloutsLabelMemberPath", {
|
|
3482
3530
|
get: function () {
|
|
3483
|
-
return this.
|
|
3531
|
+
return this.kp;
|
|
3484
3532
|
},
|
|
3485
3533
|
set: function (a) {
|
|
3486
|
-
this.
|
|
3534
|
+
this.kp = a;
|
|
3487
3535
|
this.g("CalloutsLabelMemberPath");
|
|
3488
3536
|
},
|
|
3489
3537
|
enumerable: false,
|
|
@@ -3491,10 +3539,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3491
3539
|
});
|
|
3492
3540
|
Object.defineProperty(DomainChartDescription.prototype, "calloutsContentMemberPath", {
|
|
3493
3541
|
get: function () {
|
|
3494
|
-
return this.
|
|
3542
|
+
return this.kj;
|
|
3495
3543
|
},
|
|
3496
3544
|
set: function (a) {
|
|
3497
|
-
this.
|
|
3545
|
+
this.kj = a;
|
|
3498
3546
|
this.g("CalloutsContentMemberPath");
|
|
3499
3547
|
},
|
|
3500
3548
|
enumerable: false,
|
|
@@ -3502,10 +3550,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3502
3550
|
});
|
|
3503
3551
|
Object.defineProperty(DomainChartDescription.prototype, "calloutsFontFamily", {
|
|
3504
3552
|
get: function () {
|
|
3505
|
-
return this.
|
|
3553
|
+
return this.km;
|
|
3506
3554
|
},
|
|
3507
3555
|
set: function (a) {
|
|
3508
|
-
this.
|
|
3556
|
+
this.km = a;
|
|
3509
3557
|
this.g("CalloutsFontFamily");
|
|
3510
3558
|
},
|
|
3511
3559
|
enumerable: false,
|
|
@@ -3524,10 +3572,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3524
3572
|
});
|
|
3525
3573
|
Object.defineProperty(DomainChartDescription.prototype, "calloutsFontStyle", {
|
|
3526
3574
|
get: function () {
|
|
3527
|
-
return this.
|
|
3575
|
+
return this.kn;
|
|
3528
3576
|
},
|
|
3529
3577
|
set: function (a) {
|
|
3530
|
-
this.
|
|
3578
|
+
this.kn = a;
|
|
3531
3579
|
this.g("CalloutsFontStyle");
|
|
3532
3580
|
},
|
|
3533
3581
|
enumerable: false,
|
|
@@ -3535,10 +3583,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3535
3583
|
});
|
|
3536
3584
|
Object.defineProperty(DomainChartDescription.prototype, "calloutsFontWeight", {
|
|
3537
3585
|
get: function () {
|
|
3538
|
-
return this.
|
|
3586
|
+
return this.ko;
|
|
3539
3587
|
},
|
|
3540
3588
|
set: function (a) {
|
|
3541
|
-
this.
|
|
3589
|
+
this.ko = a;
|
|
3542
3590
|
this.g("CalloutsFontWeight");
|
|
3543
3591
|
},
|
|
3544
3592
|
enumerable: false,
|
|
@@ -3568,10 +3616,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3568
3616
|
});
|
|
3569
3617
|
Object.defineProperty(DomainChartDescription.prototype, "valueLinesThickness", {
|
|
3570
3618
|
get: function () {
|
|
3571
|
-
return this.
|
|
3619
|
+
return this.f8;
|
|
3572
3620
|
},
|
|
3573
3621
|
set: function (a) {
|
|
3574
|
-
this.
|
|
3622
|
+
this.f8 = a;
|
|
3575
3623
|
this.g("ValueLinesThickness");
|
|
3576
3624
|
},
|
|
3577
3625
|
enumerable: false,
|
|
@@ -3590,10 +3638,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3590
3638
|
});
|
|
3591
3639
|
Object.defineProperty(DomainChartDescription.prototype, "horizontalViewScrollbarMode", {
|
|
3592
3640
|
get: function () {
|
|
3593
|
-
return this.
|
|
3641
|
+
return this.m9;
|
|
3594
3642
|
},
|
|
3595
3643
|
set: function (a) {
|
|
3596
|
-
this.
|
|
3644
|
+
this.m9 = a;
|
|
3597
3645
|
this.g("HorizontalViewScrollbarMode");
|
|
3598
3646
|
},
|
|
3599
3647
|
enumerable: false,
|
|
@@ -3601,10 +3649,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3601
3649
|
});
|
|
3602
3650
|
Object.defineProperty(DomainChartDescription.prototype, "verticalViewScrollbarMode", {
|
|
3603
3651
|
get: function () {
|
|
3604
|
-
return this.
|
|
3652
|
+
return this.ol;
|
|
3605
3653
|
},
|
|
3606
3654
|
set: function (a) {
|
|
3607
|
-
this.
|
|
3655
|
+
this.ol = a;
|
|
3608
3656
|
this.g("VerticalViewScrollbarMode");
|
|
3609
3657
|
},
|
|
3610
3658
|
enumerable: false,
|
|
@@ -3612,10 +3660,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3612
3660
|
});
|
|
3613
3661
|
Object.defineProperty(DomainChartDescription.prototype, "horizontalViewScrollbarPosition", {
|
|
3614
3662
|
get: function () {
|
|
3615
|
-
return this.
|
|
3663
|
+
return this.nb;
|
|
3616
3664
|
},
|
|
3617
3665
|
set: function (a) {
|
|
3618
|
-
this.
|
|
3666
|
+
this.nb = a;
|
|
3619
3667
|
this.g("HorizontalViewScrollbarPosition");
|
|
3620
3668
|
},
|
|
3621
3669
|
enumerable: false,
|
|
@@ -3623,10 +3671,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3623
3671
|
});
|
|
3624
3672
|
Object.defineProperty(DomainChartDescription.prototype, "verticalViewScrollbarPosition", {
|
|
3625
3673
|
get: function () {
|
|
3626
|
-
return this.
|
|
3674
|
+
return this.on;
|
|
3627
3675
|
},
|
|
3628
3676
|
set: function (a) {
|
|
3629
|
-
this.
|
|
3677
|
+
this.on = a;
|
|
3630
3678
|
this.g("VerticalViewScrollbarPosition");
|
|
3631
3679
|
},
|
|
3632
3680
|
enumerable: false,
|
|
@@ -3634,10 +3682,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3634
3682
|
});
|
|
3635
3683
|
Object.defineProperty(DomainChartDescription.prototype, "horizontalViewScrollbarFill", {
|
|
3636
3684
|
get: function () {
|
|
3637
|
-
return this.
|
|
3685
|
+
return this.m8;
|
|
3638
3686
|
},
|
|
3639
3687
|
set: function (a) {
|
|
3640
|
-
this.
|
|
3688
|
+
this.m8 = a;
|
|
3641
3689
|
this.g("HorizontalViewScrollbarFill");
|
|
3642
3690
|
},
|
|
3643
3691
|
enumerable: false,
|
|
@@ -3645,10 +3693,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3645
3693
|
});
|
|
3646
3694
|
Object.defineProperty(DomainChartDescription.prototype, "horizontalViewScrollbarOutline", {
|
|
3647
3695
|
get: function () {
|
|
3648
|
-
return this.
|
|
3696
|
+
return this.na;
|
|
3649
3697
|
},
|
|
3650
3698
|
set: function (a) {
|
|
3651
|
-
this.
|
|
3699
|
+
this.na = a;
|
|
3652
3700
|
this.g("HorizontalViewScrollbarOutline");
|
|
3653
3701
|
},
|
|
3654
3702
|
enumerable: false,
|
|
@@ -3656,10 +3704,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3656
3704
|
});
|
|
3657
3705
|
Object.defineProperty(DomainChartDescription.prototype, "horizontalViewScrollbarStrokeThickness", {
|
|
3658
3706
|
get: function () {
|
|
3659
|
-
return this.
|
|
3707
|
+
return this.fk;
|
|
3660
3708
|
},
|
|
3661
3709
|
set: function (a) {
|
|
3662
|
-
this.
|
|
3710
|
+
this.fk = a;
|
|
3663
3711
|
this.g("HorizontalViewScrollbarStrokeThickness");
|
|
3664
3712
|
},
|
|
3665
3713
|
enumerable: false,
|
|
@@ -3667,10 +3715,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3667
3715
|
});
|
|
3668
3716
|
Object.defineProperty(DomainChartDescription.prototype, "horizontalViewScrollbarMaxOpacity", {
|
|
3669
3717
|
get: function () {
|
|
3670
|
-
return this.
|
|
3718
|
+
return this.fj;
|
|
3671
3719
|
},
|
|
3672
3720
|
set: function (a) {
|
|
3673
|
-
this.
|
|
3721
|
+
this.fj = a;
|
|
3674
3722
|
this.g("HorizontalViewScrollbarMaxOpacity");
|
|
3675
3723
|
},
|
|
3676
3724
|
enumerable: false,
|
|
@@ -3678,10 +3726,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3678
3726
|
});
|
|
3679
3727
|
Object.defineProperty(DomainChartDescription.prototype, "horizontalViewScrollbarCornerRadius", {
|
|
3680
3728
|
get: function () {
|
|
3681
|
-
return this.
|
|
3729
|
+
return this.fg;
|
|
3682
3730
|
},
|
|
3683
3731
|
set: function (a) {
|
|
3684
|
-
this.
|
|
3732
|
+
this.fg = a;
|
|
3685
3733
|
this.g("HorizontalViewScrollbarCornerRadius");
|
|
3686
3734
|
},
|
|
3687
3735
|
enumerable: false,
|
|
@@ -3689,10 +3737,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3689
3737
|
});
|
|
3690
3738
|
Object.defineProperty(DomainChartDescription.prototype, "horizontalViewScrollbarHeight", {
|
|
3691
3739
|
get: function () {
|
|
3692
|
-
return this.
|
|
3740
|
+
return this.fh;
|
|
3693
3741
|
},
|
|
3694
3742
|
set: function (a) {
|
|
3695
|
-
this.
|
|
3743
|
+
this.fh = a;
|
|
3696
3744
|
this.g("HorizontalViewScrollbarHeight");
|
|
3697
3745
|
},
|
|
3698
3746
|
enumerable: false,
|
|
@@ -3700,10 +3748,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3700
3748
|
});
|
|
3701
3749
|
Object.defineProperty(DomainChartDescription.prototype, "horizontalViewScrollbarInset", {
|
|
3702
3750
|
get: function () {
|
|
3703
|
-
return this.
|
|
3751
|
+
return this.fi;
|
|
3704
3752
|
},
|
|
3705
3753
|
set: function (a) {
|
|
3706
|
-
this.
|
|
3754
|
+
this.fi = a;
|
|
3707
3755
|
this.g("HorizontalViewScrollbarInset");
|
|
3708
3756
|
},
|
|
3709
3757
|
enumerable: false,
|
|
@@ -3711,10 +3759,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3711
3759
|
});
|
|
3712
3760
|
Object.defineProperty(DomainChartDescription.prototype, "horizontalViewScrollbarTrackStartInset", {
|
|
3713
3761
|
get: function () {
|
|
3714
|
-
return this.
|
|
3762
|
+
return this.fm;
|
|
3715
3763
|
},
|
|
3716
3764
|
set: function (a) {
|
|
3717
|
-
this.
|
|
3765
|
+
this.fm = a;
|
|
3718
3766
|
this.g("HorizontalViewScrollbarTrackStartInset");
|
|
3719
3767
|
},
|
|
3720
3768
|
enumerable: false,
|
|
@@ -3722,10 +3770,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3722
3770
|
});
|
|
3723
3771
|
Object.defineProperty(DomainChartDescription.prototype, "horizontalViewScrollbarTrackEndInset", {
|
|
3724
3772
|
get: function () {
|
|
3725
|
-
return this.
|
|
3773
|
+
return this.fl;
|
|
3726
3774
|
},
|
|
3727
3775
|
set: function (a) {
|
|
3728
|
-
this.
|
|
3776
|
+
this.fl = a;
|
|
3729
3777
|
this.g("HorizontalViewScrollbarTrackEndInset");
|
|
3730
3778
|
},
|
|
3731
3779
|
enumerable: false,
|
|
@@ -3744,10 +3792,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3744
3792
|
});
|
|
3745
3793
|
Object.defineProperty(DomainChartDescription.prototype, "verticalViewScrollbarFill", {
|
|
3746
3794
|
get: function () {
|
|
3747
|
-
return this.
|
|
3795
|
+
return this.ok;
|
|
3748
3796
|
},
|
|
3749
3797
|
set: function (a) {
|
|
3750
|
-
this.
|
|
3798
|
+
this.ok = a;
|
|
3751
3799
|
this.g("VerticalViewScrollbarFill");
|
|
3752
3800
|
},
|
|
3753
3801
|
enumerable: false,
|
|
@@ -3755,10 +3803,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3755
3803
|
});
|
|
3756
3804
|
Object.defineProperty(DomainChartDescription.prototype, "verticalViewScrollbarOutline", {
|
|
3757
3805
|
get: function () {
|
|
3758
|
-
return this.
|
|
3806
|
+
return this.om;
|
|
3759
3807
|
},
|
|
3760
3808
|
set: function (a) {
|
|
3761
|
-
this.
|
|
3809
|
+
this.om = a;
|
|
3762
3810
|
this.g("VerticalViewScrollbarOutline");
|
|
3763
3811
|
},
|
|
3764
3812
|
enumerable: false,
|
|
@@ -3766,10 +3814,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3766
3814
|
});
|
|
3767
3815
|
Object.defineProperty(DomainChartDescription.prototype, "verticalViewScrollbarStrokeThickness", {
|
|
3768
3816
|
get: function () {
|
|
3769
|
-
return this.
|
|
3817
|
+
return this.gc;
|
|
3770
3818
|
},
|
|
3771
3819
|
set: function (a) {
|
|
3772
|
-
this.
|
|
3820
|
+
this.gc = a;
|
|
3773
3821
|
this.g("VerticalViewScrollbarStrokeThickness");
|
|
3774
3822
|
},
|
|
3775
3823
|
enumerable: false,
|
|
@@ -3777,10 +3825,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3777
3825
|
});
|
|
3778
3826
|
Object.defineProperty(DomainChartDescription.prototype, "verticalViewScrollbarMaxOpacity", {
|
|
3779
3827
|
get: function () {
|
|
3780
|
-
return this.
|
|
3828
|
+
return this.gb;
|
|
3781
3829
|
},
|
|
3782
3830
|
set: function (a) {
|
|
3783
|
-
this.
|
|
3831
|
+
this.gb = a;
|
|
3784
3832
|
this.g("VerticalViewScrollbarMaxOpacity");
|
|
3785
3833
|
},
|
|
3786
3834
|
enumerable: false,
|
|
@@ -3788,10 +3836,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3788
3836
|
});
|
|
3789
3837
|
Object.defineProperty(DomainChartDescription.prototype, "verticalViewScrollbarCornerRadius", {
|
|
3790
3838
|
get: function () {
|
|
3791
|
-
return this.
|
|
3839
|
+
return this.f9;
|
|
3792
3840
|
},
|
|
3793
3841
|
set: function (a) {
|
|
3794
|
-
this.
|
|
3842
|
+
this.f9 = a;
|
|
3795
3843
|
this.g("VerticalViewScrollbarCornerRadius");
|
|
3796
3844
|
},
|
|
3797
3845
|
enumerable: false,
|
|
@@ -3799,10 +3847,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3799
3847
|
});
|
|
3800
3848
|
Object.defineProperty(DomainChartDescription.prototype, "verticalViewScrollbarWidth", {
|
|
3801
3849
|
get: function () {
|
|
3802
|
-
return this.
|
|
3850
|
+
return this.gf;
|
|
3803
3851
|
},
|
|
3804
3852
|
set: function (a) {
|
|
3805
|
-
this.
|
|
3853
|
+
this.gf = a;
|
|
3806
3854
|
this.g("VerticalViewScrollbarWidth");
|
|
3807
3855
|
},
|
|
3808
3856
|
enumerable: false,
|
|
@@ -3810,10 +3858,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3810
3858
|
});
|
|
3811
3859
|
Object.defineProperty(DomainChartDescription.prototype, "verticalViewScrollbarInset", {
|
|
3812
3860
|
get: function () {
|
|
3813
|
-
return this.
|
|
3861
|
+
return this.ga;
|
|
3814
3862
|
},
|
|
3815
3863
|
set: function (a) {
|
|
3816
|
-
this.
|
|
3864
|
+
this.ga = a;
|
|
3817
3865
|
this.g("VerticalViewScrollbarInset");
|
|
3818
3866
|
},
|
|
3819
3867
|
enumerable: false,
|
|
@@ -3821,10 +3869,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3821
3869
|
});
|
|
3822
3870
|
Object.defineProperty(DomainChartDescription.prototype, "verticalViewScrollbarTrackStartInset", {
|
|
3823
3871
|
get: function () {
|
|
3824
|
-
return this.
|
|
3872
|
+
return this.ge;
|
|
3825
3873
|
},
|
|
3826
3874
|
set: function (a) {
|
|
3827
|
-
this.
|
|
3875
|
+
this.ge = a;
|
|
3828
3876
|
this.g("VerticalViewScrollbarTrackStartInset");
|
|
3829
3877
|
},
|
|
3830
3878
|
enumerable: false,
|
|
@@ -3832,10 +3880,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3832
3880
|
});
|
|
3833
3881
|
Object.defineProperty(DomainChartDescription.prototype, "verticalViewScrollbarTrackEndInset", {
|
|
3834
3882
|
get: function () {
|
|
3835
|
-
return this.
|
|
3883
|
+
return this.gd;
|
|
3836
3884
|
},
|
|
3837
3885
|
set: function (a) {
|
|
3838
|
-
this.
|
|
3886
|
+
this.gd = a;
|
|
3839
3887
|
this.g("VerticalViewScrollbarTrackEndInset");
|
|
3840
3888
|
},
|
|
3841
3889
|
enumerable: false,
|
|
@@ -3854,10 +3902,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3854
3902
|
});
|
|
3855
3903
|
Object.defineProperty(DomainChartDescription.prototype, "windowRectMinWidth", {
|
|
3856
3904
|
get: function () {
|
|
3857
|
-
return this.
|
|
3905
|
+
return this.gh;
|
|
3858
3906
|
},
|
|
3859
3907
|
set: function (a) {
|
|
3860
|
-
this.
|
|
3908
|
+
this.gh = a;
|
|
3861
3909
|
this.g("WindowRectMinWidth");
|
|
3862
3910
|
},
|
|
3863
3911
|
enumerable: false,
|
|
@@ -3865,10 +3913,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3865
3913
|
});
|
|
3866
3914
|
Object.defineProperty(DomainChartDescription.prototype, "windowRectMinHeight", {
|
|
3867
3915
|
get: function () {
|
|
3868
|
-
return this.
|
|
3916
|
+
return this.gg;
|
|
3869
3917
|
},
|
|
3870
3918
|
set: function (a) {
|
|
3871
|
-
this.
|
|
3919
|
+
this.gg = a;
|
|
3872
3920
|
this.g("WindowRectMinHeight");
|
|
3873
3921
|
},
|
|
3874
3922
|
enumerable: false,
|
|
@@ -3876,10 +3924,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3876
3924
|
});
|
|
3877
3925
|
Object.defineProperty(DomainChartDescription.prototype, "windowSizeMinWidth", {
|
|
3878
3926
|
get: function () {
|
|
3879
|
-
return this.
|
|
3927
|
+
return this.gj;
|
|
3880
3928
|
},
|
|
3881
3929
|
set: function (a) {
|
|
3882
|
-
this.
|
|
3930
|
+
this.gj = a;
|
|
3883
3931
|
this.g("WindowSizeMinWidth");
|
|
3884
3932
|
},
|
|
3885
3933
|
enumerable: false,
|
|
@@ -3887,10 +3935,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3887
3935
|
});
|
|
3888
3936
|
Object.defineProperty(DomainChartDescription.prototype, "windowSizeMinHeight", {
|
|
3889
3937
|
get: function () {
|
|
3890
|
-
return this.
|
|
3938
|
+
return this.gi;
|
|
3891
3939
|
},
|
|
3892
3940
|
set: function (a) {
|
|
3893
|
-
this.
|
|
3941
|
+
this.gi = a;
|
|
3894
3942
|
this.g("WindowSizeMinHeight");
|
|
3895
3943
|
},
|
|
3896
3944
|
enumerable: false,
|
|
@@ -3898,10 +3946,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3898
3946
|
});
|
|
3899
3947
|
Object.defineProperty(DomainChartDescription.prototype, "seriesAddedRef", {
|
|
3900
3948
|
get: function () {
|
|
3901
|
-
return this.
|
|
3949
|
+
return this.nz;
|
|
3902
3950
|
},
|
|
3903
3951
|
set: function (a) {
|
|
3904
|
-
this.
|
|
3952
|
+
this.nz = a;
|
|
3905
3953
|
this.g("SeriesAddedRef");
|
|
3906
3954
|
},
|
|
3907
3955
|
enumerable: false,
|
|
@@ -3909,10 +3957,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3909
3957
|
});
|
|
3910
3958
|
Object.defineProperty(DomainChartDescription.prototype, "seriesRemovedRef", {
|
|
3911
3959
|
get: function () {
|
|
3912
|
-
return this.
|
|
3960
|
+
return this.n8;
|
|
3913
3961
|
},
|
|
3914
3962
|
set: function (a) {
|
|
3915
|
-
this.
|
|
3963
|
+
this.n8 = a;
|
|
3916
3964
|
this.g("SeriesRemovedRef");
|
|
3917
3965
|
},
|
|
3918
3966
|
enumerable: false,
|
|
@@ -3920,10 +3968,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3920
3968
|
});
|
|
3921
3969
|
Object.defineProperty(DomainChartDescription.prototype, "seriesPointerEnterRef", {
|
|
3922
3970
|
get: function () {
|
|
3923
|
-
return this.
|
|
3971
|
+
return this.n4;
|
|
3924
3972
|
},
|
|
3925
3973
|
set: function (a) {
|
|
3926
|
-
this.
|
|
3974
|
+
this.n4 = a;
|
|
3927
3975
|
this.g("SeriesPointerEnterRef");
|
|
3928
3976
|
},
|
|
3929
3977
|
enumerable: false,
|
|
@@ -3931,10 +3979,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3931
3979
|
});
|
|
3932
3980
|
Object.defineProperty(DomainChartDescription.prototype, "seriesPointerLeaveRef", {
|
|
3933
3981
|
get: function () {
|
|
3934
|
-
return this.
|
|
3982
|
+
return this.n5;
|
|
3935
3983
|
},
|
|
3936
3984
|
set: function (a) {
|
|
3937
|
-
this.
|
|
3985
|
+
this.n5 = a;
|
|
3938
3986
|
this.g("SeriesPointerLeaveRef");
|
|
3939
3987
|
},
|
|
3940
3988
|
enumerable: false,
|
|
@@ -3942,10 +3990,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3942
3990
|
});
|
|
3943
3991
|
Object.defineProperty(DomainChartDescription.prototype, "seriesPointerMoveRef", {
|
|
3944
3992
|
get: function () {
|
|
3945
|
-
return this.
|
|
3993
|
+
return this.n6;
|
|
3946
3994
|
},
|
|
3947
3995
|
set: function (a) {
|
|
3948
|
-
this.
|
|
3996
|
+
this.n6 = a;
|
|
3949
3997
|
this.g("SeriesPointerMoveRef");
|
|
3950
3998
|
},
|
|
3951
3999
|
enumerable: false,
|
|
@@ -3953,10 +4001,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3953
4001
|
});
|
|
3954
4002
|
Object.defineProperty(DomainChartDescription.prototype, "seriesPointerDownRef", {
|
|
3955
4003
|
get: function () {
|
|
3956
|
-
return this.
|
|
4004
|
+
return this.n3;
|
|
3957
4005
|
},
|
|
3958
4006
|
set: function (a) {
|
|
3959
|
-
this.
|
|
4007
|
+
this.n3 = a;
|
|
3960
4008
|
this.g("SeriesPointerDownRef");
|
|
3961
4009
|
},
|
|
3962
4010
|
enumerable: false,
|
|
@@ -3964,10 +4012,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3964
4012
|
});
|
|
3965
4013
|
Object.defineProperty(DomainChartDescription.prototype, "seriesPointerUpRef", {
|
|
3966
4014
|
get: function () {
|
|
3967
|
-
return this.
|
|
4015
|
+
return this.n7;
|
|
3968
4016
|
},
|
|
3969
4017
|
set: function (a) {
|
|
3970
|
-
this.
|
|
4018
|
+
this.n7 = a;
|
|
3971
4019
|
this.g("SeriesPointerUpRef");
|
|
3972
4020
|
},
|
|
3973
4021
|
enumerable: false,
|
|
@@ -3975,10 +4023,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3975
4023
|
});
|
|
3976
4024
|
Object.defineProperty(DomainChartDescription.prototype, "seriesClickRef", {
|
|
3977
4025
|
get: function () {
|
|
3978
|
-
return this.
|
|
4026
|
+
return this.n0;
|
|
3979
4027
|
},
|
|
3980
4028
|
set: function (a) {
|
|
3981
|
-
this.
|
|
4029
|
+
this.n0 = a;
|
|
3982
4030
|
this.g("SeriesClickRef");
|
|
3983
4031
|
},
|
|
3984
4032
|
enumerable: false,
|
|
@@ -3986,10 +4034,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3986
4034
|
});
|
|
3987
4035
|
Object.defineProperty(DomainChartDescription.prototype, "plotAreaPointerEnterRef", {
|
|
3988
4036
|
get: function () {
|
|
3989
|
-
return this.
|
|
4037
|
+
return this.nr;
|
|
3990
4038
|
},
|
|
3991
4039
|
set: function (a) {
|
|
3992
|
-
this.
|
|
4040
|
+
this.nr = a;
|
|
3993
4041
|
this.g("PlotAreaPointerEnterRef");
|
|
3994
4042
|
},
|
|
3995
4043
|
enumerable: false,
|
|
@@ -3997,10 +4045,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3997
4045
|
});
|
|
3998
4046
|
Object.defineProperty(DomainChartDescription.prototype, "plotAreaPointerLeaveRef", {
|
|
3999
4047
|
get: function () {
|
|
4000
|
-
return this.
|
|
4048
|
+
return this.ns;
|
|
4001
4049
|
},
|
|
4002
4050
|
set: function (a) {
|
|
4003
|
-
this.
|
|
4051
|
+
this.ns = a;
|
|
4004
4052
|
this.g("PlotAreaPointerLeaveRef");
|
|
4005
4053
|
},
|
|
4006
4054
|
enumerable: false,
|
|
@@ -4008,10 +4056,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
4008
4056
|
});
|
|
4009
4057
|
Object.defineProperty(DomainChartDescription.prototype, "plotAreaPointerMoveRef", {
|
|
4010
4058
|
get: function () {
|
|
4011
|
-
return this.
|
|
4059
|
+
return this.nt;
|
|
4012
4060
|
},
|
|
4013
4061
|
set: function (a) {
|
|
4014
|
-
this.
|
|
4062
|
+
this.nt = a;
|
|
4015
4063
|
this.g("PlotAreaPointerMoveRef");
|
|
4016
4064
|
},
|
|
4017
4065
|
enumerable: false,
|
|
@@ -4019,10 +4067,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
4019
4067
|
});
|
|
4020
4068
|
Object.defineProperty(DomainChartDescription.prototype, "plotAreaPointerDownRef", {
|
|
4021
4069
|
get: function () {
|
|
4022
|
-
return this.
|
|
4070
|
+
return this.nq;
|
|
4023
4071
|
},
|
|
4024
4072
|
set: function (a) {
|
|
4025
|
-
this.
|
|
4073
|
+
this.nq = a;
|
|
4026
4074
|
this.g("PlotAreaPointerDownRef");
|
|
4027
4075
|
},
|
|
4028
4076
|
enumerable: false,
|
|
@@ -4030,10 +4078,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
4030
4078
|
});
|
|
4031
4079
|
Object.defineProperty(DomainChartDescription.prototype, "plotAreaPointerUpRef", {
|
|
4032
4080
|
get: function () {
|
|
4033
|
-
return this.
|
|
4081
|
+
return this.nu;
|
|
4034
4082
|
},
|
|
4035
4083
|
set: function (a) {
|
|
4036
|
-
this.
|
|
4084
|
+
this.nu = a;
|
|
4037
4085
|
this.g("PlotAreaPointerUpRef");
|
|
4038
4086
|
},
|
|
4039
4087
|
enumerable: false,
|
|
@@ -4041,10 +4089,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
4041
4089
|
});
|
|
4042
4090
|
Object.defineProperty(DomainChartDescription.prototype, "calloutStyleUpdatingRef", {
|
|
4043
4091
|
get: function () {
|
|
4044
|
-
return this.
|
|
4092
|
+
return this.ku;
|
|
4045
4093
|
},
|
|
4046
4094
|
set: function (a) {
|
|
4047
|
-
this.
|
|
4095
|
+
this.ku = a;
|
|
4048
4096
|
this.g("CalloutStyleUpdatingRef");
|
|
4049
4097
|
},
|
|
4050
4098
|
enumerable: false,
|
|
@@ -4052,10 +4100,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
4052
4100
|
});
|
|
4053
4101
|
Object.defineProperty(DomainChartDescription.prototype, "calloutRenderStyleUpdatingRef", {
|
|
4054
4102
|
get: function () {
|
|
4055
|
-
return this.
|
|
4103
|
+
return this.kh;
|
|
4056
4104
|
},
|
|
4057
4105
|
set: function (a) {
|
|
4058
|
-
this.
|
|
4106
|
+
this.kh = a;
|
|
4059
4107
|
this.g("CalloutRenderStyleUpdatingRef");
|
|
4060
4108
|
},
|
|
4061
4109
|
enumerable: false,
|
|
@@ -4063,10 +4111,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
4063
4111
|
});
|
|
4064
4112
|
Object.defineProperty(DomainChartDescription.prototype, "selectedSeriesItemsChangedRef", {
|
|
4065
4113
|
get: function () {
|
|
4066
|
-
return this.
|
|
4114
|
+
return this.nv;
|
|
4067
4115
|
},
|
|
4068
4116
|
set: function (a) {
|
|
4069
|
-
this.
|
|
4117
|
+
this.nv = a;
|
|
4070
4118
|
this.g("SelectedSeriesItemsChangedRef");
|
|
4071
4119
|
},
|
|
4072
4120
|
enumerable: false,
|
|
@@ -4074,10 +4122,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
4074
4122
|
});
|
|
4075
4123
|
Object.defineProperty(DomainChartDescription.prototype, "focusedSeriesItemsChangedRef", {
|
|
4076
4124
|
get: function () {
|
|
4077
|
-
return this.
|
|
4125
|
+
return this.m0;
|
|
4078
4126
|
},
|
|
4079
4127
|
set: function (a) {
|
|
4080
|
-
this.
|
|
4128
|
+
this.m0 = a;
|
|
4081
4129
|
this.g("FocusedSeriesItemsChangedRef");
|
|
4082
4130
|
},
|
|
4083
4131
|
enumerable: false,
|
|
@@ -4085,10 +4133,10 @@ var DomainChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
4085
4133
|
});
|
|
4086
4134
|
Object.defineProperty(DomainChartDescription.prototype, "filterStringErrorsParsingRef", {
|
|
4087
4135
|
get: function () {
|
|
4088
|
-
return this.
|
|
4136
|
+
return this.mw;
|
|
4089
4137
|
},
|
|
4090
4138
|
set: function (a) {
|
|
4091
|
-
this.
|
|
4139
|
+
this.mw = a;
|
|
4092
4140
|
this.g("FilterStringErrorsParsingRef");
|
|
4093
4141
|
},
|
|
4094
4142
|
enumerable: false,
|