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
|
@@ -19,151 +19,161 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
19
19
|
_this.l = null;
|
|
20
20
|
_this.j = null;
|
|
21
21
|
_this.k = null;
|
|
22
|
-
_this.
|
|
22
|
+
_this.e2 = null;
|
|
23
23
|
_this.v = null;
|
|
24
|
-
_this.
|
|
24
|
+
_this.e1 = null;
|
|
25
25
|
_this.af = false;
|
|
26
|
-
_this.
|
|
27
|
-
_this.
|
|
28
|
-
_this.
|
|
29
|
-
_this.
|
|
30
|
-
_this.e2 = null;
|
|
31
|
-
_this.e0 = null;
|
|
32
|
-
_this.d8 = null;
|
|
33
|
-
_this.ef = null;
|
|
34
|
-
_this.ft = null;
|
|
35
|
-
_this.eh = null;
|
|
36
|
-
_this.fv = null;
|
|
37
|
-
_this.ee = null;
|
|
38
|
-
_this.eg = null;
|
|
39
|
-
_this.bk = 0;
|
|
40
|
-
_this.bj = 0;
|
|
41
|
-
_this.bg = 0;
|
|
42
|
-
_this.bh = 0;
|
|
26
|
+
_this.an = false;
|
|
27
|
+
_this.al = false;
|
|
28
|
+
_this.aq = false;
|
|
29
|
+
_this.eq = null;
|
|
43
30
|
_this.bi = 0;
|
|
31
|
+
_this.fj = null;
|
|
32
|
+
_this.fh = null;
|
|
33
|
+
_this.em = null;
|
|
34
|
+
_this.et = null;
|
|
35
|
+
_this.ga = null;
|
|
36
|
+
_this.ev = null;
|
|
37
|
+
_this.gc = null;
|
|
38
|
+
_this.es = null;
|
|
39
|
+
_this.eu = null;
|
|
40
|
+
_this.bn = 0;
|
|
44
41
|
_this.bm = 0;
|
|
42
|
+
_this.bj = 0;
|
|
43
|
+
_this.bk = 0;
|
|
45
44
|
_this.bl = 0;
|
|
46
|
-
_this.
|
|
47
|
-
_this.
|
|
48
|
-
_this.
|
|
49
|
-
_this.
|
|
50
|
-
_this.
|
|
51
|
-
_this.
|
|
45
|
+
_this.bp = 0;
|
|
46
|
+
_this.bo = 0;
|
|
47
|
+
_this.ah = false;
|
|
48
|
+
_this.f9 = null;
|
|
49
|
+
_this.gb = null;
|
|
50
|
+
_this.b9 = 0;
|
|
52
51
|
_this.b8 = 0;
|
|
53
|
-
_this.b3 = 0;
|
|
54
|
-
_this.b7 = 0;
|
|
55
52
|
_this.b6 = 0;
|
|
56
|
-
_this.
|
|
57
|
-
_this.
|
|
58
|
-
_this.
|
|
59
|
-
_this.
|
|
60
|
-
_this.
|
|
53
|
+
_this.cc = 0;
|
|
54
|
+
_this.b7 = 0;
|
|
55
|
+
_this.cb = 0;
|
|
56
|
+
_this.ca = 0;
|
|
57
|
+
_this.at = false;
|
|
58
|
+
_this.ep = null;
|
|
59
|
+
_this.ey = null;
|
|
60
|
+
_this.e0 = null;
|
|
61
|
+
_this.ez = null;
|
|
62
|
+
_this.ag = false;
|
|
61
63
|
_this.y = null;
|
|
62
64
|
_this.aa = null;
|
|
63
|
-
_this.
|
|
64
|
-
_this.
|
|
65
|
-
_this.
|
|
66
|
-
_this.
|
|
67
|
-
_this.
|
|
68
|
-
_this.
|
|
69
|
-
_this.
|
|
70
|
-
_this.
|
|
71
|
-
_this.
|
|
72
|
-
_this.
|
|
65
|
+
_this.as = false;
|
|
66
|
+
_this.am = false;
|
|
67
|
+
_this.d2 = 0;
|
|
68
|
+
_this.dx = 0;
|
|
69
|
+
_this.dy = 0;
|
|
70
|
+
_this.d1 = 0;
|
|
71
|
+
_this.d0 = 0;
|
|
72
|
+
_this.dw = 0;
|
|
73
|
+
_this.du = 0;
|
|
74
|
+
_this.dv = 0;
|
|
75
|
+
_this.dz = 0;
|
|
73
76
|
_this.aj = false;
|
|
74
|
-
_this.
|
|
75
|
-
_this.
|
|
76
|
-
_this.
|
|
77
|
-
_this.
|
|
78
|
-
_this.
|
|
79
|
-
_this.
|
|
80
|
-
_this.
|
|
81
|
-
_this.
|
|
82
|
-
_this.
|
|
83
|
-
_this.
|
|
84
|
-
_this.fr = null;
|
|
77
|
+
_this.eg = null;
|
|
78
|
+
_this.ec = null;
|
|
79
|
+
_this.ak = false;
|
|
80
|
+
_this.gg = null;
|
|
81
|
+
_this.cg = 0;
|
|
82
|
+
_this.cf = 0;
|
|
83
|
+
_this.be = 0;
|
|
84
|
+
_this.bd = 0;
|
|
85
|
+
_this.ci = 0;
|
|
86
|
+
_this.ch = 0;
|
|
85
87
|
_this.f0 = null;
|
|
86
|
-
_this.
|
|
87
|
-
_this.
|
|
88
|
-
_this.
|
|
88
|
+
_this.eh = null;
|
|
89
|
+
_this.er = null;
|
|
90
|
+
_this.f8 = null;
|
|
91
|
+
_this.gh = null;
|
|
92
|
+
_this.e4 = null;
|
|
93
|
+
_this.ao = false;
|
|
94
|
+
_this.ei = null;
|
|
95
|
+
_this.ex = null;
|
|
96
|
+
_this.ff = null;
|
|
89
97
|
_this.ej = null;
|
|
90
|
-
_this.ey = null;
|
|
91
|
-
_this.d5 = null;
|
|
92
|
-
_this.ep = null;
|
|
93
98
|
_this.e3 = null;
|
|
99
|
+
_this.fk = null;
|
|
94
100
|
_this.z = null;
|
|
95
|
-
_this.
|
|
101
|
+
_this.eo = null;
|
|
96
102
|
_this.m = null;
|
|
97
103
|
_this.i = null;
|
|
98
|
-
_this.
|
|
99
|
-
_this.
|
|
100
|
-
_this.e1 = null;
|
|
101
|
-
_this.d6 = null;
|
|
102
|
-
_this.d1 = null;
|
|
103
|
-
_this.fo = null;
|
|
104
|
-
_this.fg = null;
|
|
105
|
-
_this.fq = null;
|
|
104
|
+
_this.cd = 0;
|
|
105
|
+
_this.ce = 0;
|
|
106
106
|
_this.fi = null;
|
|
107
|
-
_this.
|
|
108
|
-
_this.
|
|
107
|
+
_this.ek = null;
|
|
108
|
+
_this.ef = null;
|
|
109
|
+
_this.f5 = null;
|
|
110
|
+
_this.fx = null;
|
|
111
|
+
_this.f7 = null;
|
|
112
|
+
_this.fz = null;
|
|
113
|
+
_this.f6 = null;
|
|
114
|
+
_this.fy = null;
|
|
115
|
+
_this.b4 = 0;
|
|
116
|
+
_this.b2 = 0;
|
|
117
|
+
_this.b3 = 0;
|
|
109
118
|
_this.b0 = 0;
|
|
110
|
-
_this.by = 0;
|
|
111
119
|
_this.bz = 0;
|
|
112
|
-
_this.
|
|
120
|
+
_this.bx = 0;
|
|
121
|
+
_this.by = 0;
|
|
113
122
|
_this.bv = 0;
|
|
114
|
-
_this.
|
|
115
|
-
_this.
|
|
123
|
+
_this.ft = null;
|
|
124
|
+
_this.b5 = 0;
|
|
116
125
|
_this.br = 0;
|
|
117
|
-
_this.
|
|
118
|
-
_this.
|
|
119
|
-
_this.
|
|
120
|
-
_this.bq = 0;
|
|
126
|
+
_this.bu = 0;
|
|
127
|
+
_this.bh = 0;
|
|
128
|
+
_this.bg = 0;
|
|
121
129
|
_this.bf = 0;
|
|
122
|
-
_this.
|
|
123
|
-
_this.
|
|
124
|
-
_this.
|
|
125
|
-
_this.bp = 0;
|
|
126
|
-
_this.bn = 0;
|
|
127
|
-
_this.a8 = 0;
|
|
128
|
-
_this.a7 = 0;
|
|
129
|
-
_this.ao = false;
|
|
130
|
-
_this.x = null;
|
|
131
|
-
_this.a9 = 0;
|
|
130
|
+
_this.ai = false;
|
|
131
|
+
_this.bs = 0;
|
|
132
|
+
_this.bq = 0;
|
|
132
133
|
_this.ba = 0;
|
|
133
|
-
_this.
|
|
134
|
-
_this.
|
|
135
|
-
_this.
|
|
136
|
-
_this.
|
|
137
|
-
_this.
|
|
138
|
-
_this.
|
|
139
|
-
_this.
|
|
134
|
+
_this.a9 = 0;
|
|
135
|
+
_this.ap = false;
|
|
136
|
+
_this.x = null;
|
|
137
|
+
_this.bb = 0;
|
|
138
|
+
_this.bc = 0;
|
|
139
|
+
_this.fc = null;
|
|
140
|
+
_this.fb = null;
|
|
141
|
+
_this.bt = 0;
|
|
140
142
|
_this.e8 = null;
|
|
141
143
|
_this.e9 = null;
|
|
142
|
-
_this.
|
|
143
|
-
_this.fa = null;
|
|
144
|
+
_this.e5 = null;
|
|
144
145
|
_this.e6 = null;
|
|
145
146
|
_this.e7 = null;
|
|
146
|
-
_this.
|
|
147
|
-
_this.
|
|
148
|
-
_this.
|
|
149
|
-
_this.
|
|
150
|
-
_this.dz = null;
|
|
151
|
-
_this.d9 = null;
|
|
152
|
-
_this.ez = null;
|
|
153
|
-
_this.d7 = null;
|
|
154
|
-
_this.ex = null;
|
|
155
|
-
_this.ei = null;
|
|
156
|
-
_this.d0 = null;
|
|
147
|
+
_this.fa = null;
|
|
148
|
+
_this.fm = null;
|
|
149
|
+
_this.fp = null;
|
|
150
|
+
_this.fq = null;
|
|
157
151
|
_this.fl = null;
|
|
158
|
-
_this.
|
|
152
|
+
_this.fr = null;
|
|
159
153
|
_this.fn = null;
|
|
160
|
-
_this.
|
|
161
|
-
_this.fd = null;
|
|
162
|
-
_this.bs = 0;
|
|
163
|
-
_this.ff = null;
|
|
154
|
+
_this.fo = null;
|
|
164
155
|
_this.fe = null;
|
|
165
|
-
_this.
|
|
166
|
-
_this.
|
|
156
|
+
_this.ge = null;
|
|
157
|
+
_this.gd = null;
|
|
158
|
+
_this.gf = null;
|
|
159
|
+
_this.fs = null;
|
|
160
|
+
_this.ed = null;
|
|
161
|
+
_this.en = null;
|
|
162
|
+
_this.fg = null;
|
|
163
|
+
_this.el = null;
|
|
164
|
+
_this.fd = null;
|
|
165
|
+
_this.ew = null;
|
|
166
|
+
_this.ee = null;
|
|
167
|
+
_this.f2 = null;
|
|
168
|
+
_this.b1 = 0;
|
|
169
|
+
_this.f4 = null;
|
|
170
|
+
_this.f3 = null;
|
|
171
|
+
_this.fu = null;
|
|
172
|
+
_this.bw = 0;
|
|
173
|
+
_this.fw = null;
|
|
174
|
+
_this.fv = null;
|
|
175
|
+
_this.ar = false;
|
|
176
|
+
_this.f1 = null;
|
|
167
177
|
return _this;
|
|
168
178
|
}
|
|
169
179
|
SeriesViewerDescription.prototype.get_type = function () {
|
|
@@ -233,10 +243,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
233
243
|
});
|
|
234
244
|
Object.defineProperty(SeriesViewerDescription.prototype, "markerAutomaticBehavior", {
|
|
235
245
|
get: function () {
|
|
236
|
-
return this.
|
|
246
|
+
return this.e2;
|
|
237
247
|
},
|
|
238
248
|
set: function (a) {
|
|
239
|
-
this.
|
|
249
|
+
this.e2 = a;
|
|
240
250
|
this.g("MarkerAutomaticBehavior");
|
|
241
251
|
},
|
|
242
252
|
enumerable: false,
|
|
@@ -255,10 +265,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
255
265
|
});
|
|
256
266
|
Object.defineProperty(SeriesViewerDescription.prototype, "legendRef", {
|
|
257
267
|
get: function () {
|
|
258
|
-
return this.
|
|
268
|
+
return this.e1;
|
|
259
269
|
},
|
|
260
270
|
set: function (a) {
|
|
261
|
-
this.
|
|
271
|
+
this.e1 = a;
|
|
262
272
|
this.g("LegendRef");
|
|
263
273
|
},
|
|
264
274
|
enumerable: false,
|
|
@@ -277,10 +287,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
277
287
|
});
|
|
278
288
|
Object.defineProperty(SeriesViewerDescription.prototype, "seriesValueLayerUseLegend", {
|
|
279
289
|
get: function () {
|
|
280
|
-
return this.
|
|
290
|
+
return this.an;
|
|
281
291
|
},
|
|
282
292
|
set: function (a) {
|
|
283
|
-
this.
|
|
293
|
+
this.an = a;
|
|
284
294
|
this.g("SeriesValueLayerUseLegend");
|
|
285
295
|
},
|
|
286
296
|
enumerable: false,
|
|
@@ -288,10 +298,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
288
298
|
});
|
|
289
299
|
Object.defineProperty(SeriesViewerDescription.prototype, "isWindowSyncedToVisibleRange", {
|
|
290
300
|
get: function () {
|
|
291
|
-
return this.
|
|
301
|
+
return this.al;
|
|
292
302
|
},
|
|
293
303
|
set: function (a) {
|
|
294
|
-
this.
|
|
304
|
+
this.al = a;
|
|
295
305
|
this.g("IsWindowSyncedToVisibleRange");
|
|
296
306
|
},
|
|
297
307
|
enumerable: false,
|
|
@@ -299,10 +309,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
299
309
|
});
|
|
300
310
|
Object.defineProperty(SeriesViewerDescription.prototype, "shouldSimulateHoverMoveCrosshairPoint", {
|
|
301
311
|
get: function () {
|
|
302
|
-
return this.
|
|
312
|
+
return this.aq;
|
|
303
313
|
},
|
|
304
314
|
set: function (a) {
|
|
305
|
-
this.
|
|
315
|
+
this.aq = a;
|
|
306
316
|
this.g("ShouldSimulateHoverMoveCrosshairPoint");
|
|
307
317
|
},
|
|
308
318
|
enumerable: false,
|
|
@@ -310,21 +320,32 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
310
320
|
});
|
|
311
321
|
Object.defineProperty(SeriesViewerDescription.prototype, "highlightingMode", {
|
|
312
322
|
get: function () {
|
|
313
|
-
return this.
|
|
323
|
+
return this.eq;
|
|
314
324
|
},
|
|
315
325
|
set: function (a) {
|
|
316
|
-
this.
|
|
326
|
+
this.eq = a;
|
|
317
327
|
this.g("HighlightingMode");
|
|
318
328
|
},
|
|
319
329
|
enumerable: false,
|
|
320
330
|
configurable: true
|
|
321
331
|
});
|
|
332
|
+
Object.defineProperty(SeriesViewerDescription.prototype, "highlightingFadeOpacity", {
|
|
333
|
+
get: function () {
|
|
334
|
+
return this.bi;
|
|
335
|
+
},
|
|
336
|
+
set: function (a) {
|
|
337
|
+
this.bi = a;
|
|
338
|
+
this.g("HighlightingFadeOpacity");
|
|
339
|
+
},
|
|
340
|
+
enumerable: false,
|
|
341
|
+
configurable: true
|
|
342
|
+
});
|
|
322
343
|
Object.defineProperty(SeriesViewerDescription.prototype, "selectionMode", {
|
|
323
344
|
get: function () {
|
|
324
|
-
return this.
|
|
345
|
+
return this.fj;
|
|
325
346
|
},
|
|
326
347
|
set: function (a) {
|
|
327
|
-
this.
|
|
348
|
+
this.fj = a;
|
|
328
349
|
this.g("SelectionMode");
|
|
329
350
|
},
|
|
330
351
|
enumerable: false,
|
|
@@ -332,10 +353,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
332
353
|
});
|
|
333
354
|
Object.defineProperty(SeriesViewerDescription.prototype, "selectionBehavior", {
|
|
334
355
|
get: function () {
|
|
335
|
-
return this.
|
|
356
|
+
return this.fh;
|
|
336
357
|
},
|
|
337
358
|
set: function (a) {
|
|
338
|
-
this.
|
|
359
|
+
this.fh = a;
|
|
339
360
|
this.g("SelectionBehavior");
|
|
340
361
|
},
|
|
341
362
|
enumerable: false,
|
|
@@ -343,10 +364,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
343
364
|
});
|
|
344
365
|
Object.defineProperty(SeriesViewerDescription.prototype, "focusMode", {
|
|
345
366
|
get: function () {
|
|
346
|
-
return this.
|
|
367
|
+
return this.em;
|
|
347
368
|
},
|
|
348
369
|
set: function (a) {
|
|
349
|
-
this.
|
|
370
|
+
this.em = a;
|
|
350
371
|
this.g("FocusMode");
|
|
351
372
|
},
|
|
352
373
|
enumerable: false,
|
|
@@ -354,10 +375,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
354
375
|
});
|
|
355
376
|
Object.defineProperty(SeriesViewerDescription.prototype, "horizontalViewScrollbarMode", {
|
|
356
377
|
get: function () {
|
|
357
|
-
return this.
|
|
378
|
+
return this.et;
|
|
358
379
|
},
|
|
359
380
|
set: function (a) {
|
|
360
|
-
this.
|
|
381
|
+
this.et = a;
|
|
361
382
|
this.g("HorizontalViewScrollbarMode");
|
|
362
383
|
},
|
|
363
384
|
enumerable: false,
|
|
@@ -365,10 +386,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
365
386
|
});
|
|
366
387
|
Object.defineProperty(SeriesViewerDescription.prototype, "verticalViewScrollbarMode", {
|
|
367
388
|
get: function () {
|
|
368
|
-
return this.
|
|
389
|
+
return this.ga;
|
|
369
390
|
},
|
|
370
391
|
set: function (a) {
|
|
371
|
-
this.
|
|
392
|
+
this.ga = a;
|
|
372
393
|
this.g("VerticalViewScrollbarMode");
|
|
373
394
|
},
|
|
374
395
|
enumerable: false,
|
|
@@ -376,10 +397,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
376
397
|
});
|
|
377
398
|
Object.defineProperty(SeriesViewerDescription.prototype, "horizontalViewScrollbarPosition", {
|
|
378
399
|
get: function () {
|
|
379
|
-
return this.
|
|
400
|
+
return this.ev;
|
|
380
401
|
},
|
|
381
402
|
set: function (a) {
|
|
382
|
-
this.
|
|
403
|
+
this.ev = a;
|
|
383
404
|
this.g("HorizontalViewScrollbarPosition");
|
|
384
405
|
},
|
|
385
406
|
enumerable: false,
|
|
@@ -387,10 +408,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
387
408
|
});
|
|
388
409
|
Object.defineProperty(SeriesViewerDescription.prototype, "verticalViewScrollbarPosition", {
|
|
389
410
|
get: function () {
|
|
390
|
-
return this.
|
|
411
|
+
return this.gc;
|
|
391
412
|
},
|
|
392
413
|
set: function (a) {
|
|
393
|
-
this.
|
|
414
|
+
this.gc = a;
|
|
394
415
|
this.g("VerticalViewScrollbarPosition");
|
|
395
416
|
},
|
|
396
417
|
enumerable: false,
|
|
@@ -398,10 +419,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
398
419
|
});
|
|
399
420
|
Object.defineProperty(SeriesViewerDescription.prototype, "horizontalViewScrollbarFill", {
|
|
400
421
|
get: function () {
|
|
401
|
-
return this.
|
|
422
|
+
return this.es;
|
|
402
423
|
},
|
|
403
424
|
set: function (a) {
|
|
404
|
-
this.
|
|
425
|
+
this.es = a;
|
|
405
426
|
this.g("HorizontalViewScrollbarFill");
|
|
406
427
|
},
|
|
407
428
|
enumerable: false,
|
|
@@ -409,10 +430,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
409
430
|
});
|
|
410
431
|
Object.defineProperty(SeriesViewerDescription.prototype, "horizontalViewScrollbarOutline", {
|
|
411
432
|
get: function () {
|
|
412
|
-
return this.
|
|
433
|
+
return this.eu;
|
|
413
434
|
},
|
|
414
435
|
set: function (a) {
|
|
415
|
-
this.
|
|
436
|
+
this.eu = a;
|
|
416
437
|
this.g("HorizontalViewScrollbarOutline");
|
|
417
438
|
},
|
|
418
439
|
enumerable: false,
|
|
@@ -420,10 +441,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
420
441
|
});
|
|
421
442
|
Object.defineProperty(SeriesViewerDescription.prototype, "horizontalViewScrollbarStrokeThickness", {
|
|
422
443
|
get: function () {
|
|
423
|
-
return this.
|
|
444
|
+
return this.bn;
|
|
424
445
|
},
|
|
425
446
|
set: function (a) {
|
|
426
|
-
this.
|
|
447
|
+
this.bn = a;
|
|
427
448
|
this.g("HorizontalViewScrollbarStrokeThickness");
|
|
428
449
|
},
|
|
429
450
|
enumerable: false,
|
|
@@ -431,10 +452,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
431
452
|
});
|
|
432
453
|
Object.defineProperty(SeriesViewerDescription.prototype, "horizontalViewScrollbarMaxOpacity", {
|
|
433
454
|
get: function () {
|
|
434
|
-
return this.
|
|
455
|
+
return this.bm;
|
|
435
456
|
},
|
|
436
457
|
set: function (a) {
|
|
437
|
-
this.
|
|
458
|
+
this.bm = a;
|
|
438
459
|
this.g("HorizontalViewScrollbarMaxOpacity");
|
|
439
460
|
},
|
|
440
461
|
enumerable: false,
|
|
@@ -442,10 +463,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
442
463
|
});
|
|
443
464
|
Object.defineProperty(SeriesViewerDescription.prototype, "horizontalViewScrollbarCornerRadius", {
|
|
444
465
|
get: function () {
|
|
445
|
-
return this.
|
|
466
|
+
return this.bj;
|
|
446
467
|
},
|
|
447
468
|
set: function (a) {
|
|
448
|
-
this.
|
|
469
|
+
this.bj = a;
|
|
449
470
|
this.g("HorizontalViewScrollbarCornerRadius");
|
|
450
471
|
},
|
|
451
472
|
enumerable: false,
|
|
@@ -453,10 +474,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
453
474
|
});
|
|
454
475
|
Object.defineProperty(SeriesViewerDescription.prototype, "horizontalViewScrollbarHeight", {
|
|
455
476
|
get: function () {
|
|
456
|
-
return this.
|
|
477
|
+
return this.bk;
|
|
457
478
|
},
|
|
458
479
|
set: function (a) {
|
|
459
|
-
this.
|
|
480
|
+
this.bk = a;
|
|
460
481
|
this.g("HorizontalViewScrollbarHeight");
|
|
461
482
|
},
|
|
462
483
|
enumerable: false,
|
|
@@ -464,10 +485,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
464
485
|
});
|
|
465
486
|
Object.defineProperty(SeriesViewerDescription.prototype, "horizontalViewScrollbarInset", {
|
|
466
487
|
get: function () {
|
|
467
|
-
return this.
|
|
488
|
+
return this.bl;
|
|
468
489
|
},
|
|
469
490
|
set: function (a) {
|
|
470
|
-
this.
|
|
491
|
+
this.bl = a;
|
|
471
492
|
this.g("HorizontalViewScrollbarInset");
|
|
472
493
|
},
|
|
473
494
|
enumerable: false,
|
|
@@ -475,10 +496,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
475
496
|
});
|
|
476
497
|
Object.defineProperty(SeriesViewerDescription.prototype, "horizontalViewScrollbarTrackStartInset", {
|
|
477
498
|
get: function () {
|
|
478
|
-
return this.
|
|
499
|
+
return this.bp;
|
|
479
500
|
},
|
|
480
501
|
set: function (a) {
|
|
481
|
-
this.
|
|
502
|
+
this.bp = a;
|
|
482
503
|
this.g("HorizontalViewScrollbarTrackStartInset");
|
|
483
504
|
},
|
|
484
505
|
enumerable: false,
|
|
@@ -486,10 +507,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
486
507
|
});
|
|
487
508
|
Object.defineProperty(SeriesViewerDescription.prototype, "horizontalViewScrollbarTrackEndInset", {
|
|
488
509
|
get: function () {
|
|
489
|
-
return this.
|
|
510
|
+
return this.bo;
|
|
490
511
|
},
|
|
491
512
|
set: function (a) {
|
|
492
|
-
this.
|
|
513
|
+
this.bo = a;
|
|
493
514
|
this.g("HorizontalViewScrollbarTrackEndInset");
|
|
494
515
|
},
|
|
495
516
|
enumerable: false,
|
|
@@ -497,10 +518,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
497
518
|
});
|
|
498
519
|
Object.defineProperty(SeriesViewerDescription.prototype, "horizontalViewScrollbarShouldAddAutoTrackInsets", {
|
|
499
520
|
get: function () {
|
|
500
|
-
return this.
|
|
521
|
+
return this.ah;
|
|
501
522
|
},
|
|
502
523
|
set: function (a) {
|
|
503
|
-
this.
|
|
524
|
+
this.ah = a;
|
|
504
525
|
this.g("HorizontalViewScrollbarShouldAddAutoTrackInsets");
|
|
505
526
|
},
|
|
506
527
|
enumerable: false,
|
|
@@ -508,10 +529,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
508
529
|
});
|
|
509
530
|
Object.defineProperty(SeriesViewerDescription.prototype, "verticalViewScrollbarFill", {
|
|
510
531
|
get: function () {
|
|
511
|
-
return this.
|
|
532
|
+
return this.f9;
|
|
512
533
|
},
|
|
513
534
|
set: function (a) {
|
|
514
|
-
this.
|
|
535
|
+
this.f9 = a;
|
|
515
536
|
this.g("VerticalViewScrollbarFill");
|
|
516
537
|
},
|
|
517
538
|
enumerable: false,
|
|
@@ -519,10 +540,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
519
540
|
});
|
|
520
541
|
Object.defineProperty(SeriesViewerDescription.prototype, "verticalViewScrollbarOutline", {
|
|
521
542
|
get: function () {
|
|
522
|
-
return this.
|
|
543
|
+
return this.gb;
|
|
523
544
|
},
|
|
524
545
|
set: function (a) {
|
|
525
|
-
this.
|
|
546
|
+
this.gb = a;
|
|
526
547
|
this.g("VerticalViewScrollbarOutline");
|
|
527
548
|
},
|
|
528
549
|
enumerable: false,
|
|
@@ -530,10 +551,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
530
551
|
});
|
|
531
552
|
Object.defineProperty(SeriesViewerDescription.prototype, "verticalViewScrollbarStrokeThickness", {
|
|
532
553
|
get: function () {
|
|
533
|
-
return this.
|
|
554
|
+
return this.b9;
|
|
534
555
|
},
|
|
535
556
|
set: function (a) {
|
|
536
|
-
this.
|
|
557
|
+
this.b9 = a;
|
|
537
558
|
this.g("VerticalViewScrollbarStrokeThickness");
|
|
538
559
|
},
|
|
539
560
|
enumerable: false,
|
|
@@ -541,10 +562,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
541
562
|
});
|
|
542
563
|
Object.defineProperty(SeriesViewerDescription.prototype, "verticalViewScrollbarMaxOpacity", {
|
|
543
564
|
get: function () {
|
|
544
|
-
return this.
|
|
565
|
+
return this.b8;
|
|
545
566
|
},
|
|
546
567
|
set: function (a) {
|
|
547
|
-
this.
|
|
568
|
+
this.b8 = a;
|
|
548
569
|
this.g("VerticalViewScrollbarMaxOpacity");
|
|
549
570
|
},
|
|
550
571
|
enumerable: false,
|
|
@@ -552,10 +573,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
552
573
|
});
|
|
553
574
|
Object.defineProperty(SeriesViewerDescription.prototype, "verticalViewScrollbarCornerRadius", {
|
|
554
575
|
get: function () {
|
|
555
|
-
return this.
|
|
576
|
+
return this.b6;
|
|
556
577
|
},
|
|
557
578
|
set: function (a) {
|
|
558
|
-
this.
|
|
579
|
+
this.b6 = a;
|
|
559
580
|
this.g("VerticalViewScrollbarCornerRadius");
|
|
560
581
|
},
|
|
561
582
|
enumerable: false,
|
|
@@ -563,10 +584,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
563
584
|
});
|
|
564
585
|
Object.defineProperty(SeriesViewerDescription.prototype, "verticalViewScrollbarWidth", {
|
|
565
586
|
get: function () {
|
|
566
|
-
return this.
|
|
587
|
+
return this.cc;
|
|
567
588
|
},
|
|
568
589
|
set: function (a) {
|
|
569
|
-
this.
|
|
590
|
+
this.cc = a;
|
|
570
591
|
this.g("VerticalViewScrollbarWidth");
|
|
571
592
|
},
|
|
572
593
|
enumerable: false,
|
|
@@ -574,10 +595,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
574
595
|
});
|
|
575
596
|
Object.defineProperty(SeriesViewerDescription.prototype, "verticalViewScrollbarInset", {
|
|
576
597
|
get: function () {
|
|
577
|
-
return this.
|
|
598
|
+
return this.b7;
|
|
578
599
|
},
|
|
579
600
|
set: function (a) {
|
|
580
|
-
this.
|
|
601
|
+
this.b7 = a;
|
|
581
602
|
this.g("VerticalViewScrollbarInset");
|
|
582
603
|
},
|
|
583
604
|
enumerable: false,
|
|
@@ -585,10 +606,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
585
606
|
});
|
|
586
607
|
Object.defineProperty(SeriesViewerDescription.prototype, "verticalViewScrollbarTrackStartInset", {
|
|
587
608
|
get: function () {
|
|
588
|
-
return this.
|
|
609
|
+
return this.cb;
|
|
589
610
|
},
|
|
590
611
|
set: function (a) {
|
|
591
|
-
this.
|
|
612
|
+
this.cb = a;
|
|
592
613
|
this.g("VerticalViewScrollbarTrackStartInset");
|
|
593
614
|
},
|
|
594
615
|
enumerable: false,
|
|
@@ -596,10 +617,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
596
617
|
});
|
|
597
618
|
Object.defineProperty(SeriesViewerDescription.prototype, "verticalViewScrollbarTrackEndInset", {
|
|
598
619
|
get: function () {
|
|
599
|
-
return this.
|
|
620
|
+
return this.ca;
|
|
600
621
|
},
|
|
601
622
|
set: function (a) {
|
|
602
|
-
this.
|
|
623
|
+
this.ca = a;
|
|
603
624
|
this.g("VerticalViewScrollbarTrackEndInset");
|
|
604
625
|
},
|
|
605
626
|
enumerable: false,
|
|
@@ -607,10 +628,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
607
628
|
});
|
|
608
629
|
Object.defineProperty(SeriesViewerDescription.prototype, "verticalViewScrollbarShouldAddAutoTrackInsets", {
|
|
609
630
|
get: function () {
|
|
610
|
-
return this.
|
|
631
|
+
return this.at;
|
|
611
632
|
},
|
|
612
633
|
set: function (a) {
|
|
613
|
-
this.
|
|
634
|
+
this.at = a;
|
|
614
635
|
this.g("VerticalViewScrollbarShouldAddAutoTrackInsets");
|
|
615
636
|
},
|
|
616
637
|
enumerable: false,
|
|
@@ -618,10 +639,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
618
639
|
});
|
|
619
640
|
Object.defineProperty(SeriesViewerDescription.prototype, "highlightingBehavior", {
|
|
620
641
|
get: function () {
|
|
621
|
-
return this.
|
|
642
|
+
return this.ep;
|
|
622
643
|
},
|
|
623
644
|
set: function (a) {
|
|
624
|
-
this.
|
|
645
|
+
this.ep = a;
|
|
625
646
|
this.g("HighlightingBehavior");
|
|
626
647
|
},
|
|
627
648
|
enumerable: false,
|
|
@@ -629,10 +650,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
629
650
|
});
|
|
630
651
|
Object.defineProperty(SeriesViewerDescription.prototype, "legendHighlightingMode", {
|
|
631
652
|
get: function () {
|
|
632
|
-
return this.
|
|
653
|
+
return this.ey;
|
|
633
654
|
},
|
|
634
655
|
set: function (a) {
|
|
635
|
-
this.
|
|
656
|
+
this.ey = a;
|
|
636
657
|
this.g("LegendHighlightingMode");
|
|
637
658
|
},
|
|
638
659
|
enumerable: false,
|
|
@@ -640,10 +661,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
640
661
|
});
|
|
641
662
|
Object.defineProperty(SeriesViewerDescription.prototype, "legendItemBadgeShape", {
|
|
642
663
|
get: function () {
|
|
643
|
-
return this.
|
|
664
|
+
return this.e0;
|
|
644
665
|
},
|
|
645
666
|
set: function (a) {
|
|
646
|
-
this.
|
|
667
|
+
this.e0 = a;
|
|
647
668
|
this.g("LegendItemBadgeShape");
|
|
648
669
|
},
|
|
649
670
|
enumerable: false,
|
|
@@ -651,15 +672,26 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
651
672
|
});
|
|
652
673
|
Object.defineProperty(SeriesViewerDescription.prototype, "legendItemBadgeMode", {
|
|
653
674
|
get: function () {
|
|
654
|
-
return this.
|
|
675
|
+
return this.ez;
|
|
655
676
|
},
|
|
656
677
|
set: function (a) {
|
|
657
|
-
this.
|
|
678
|
+
this.ez = a;
|
|
658
679
|
this.g("LegendItemBadgeMode");
|
|
659
680
|
},
|
|
660
681
|
enumerable: false,
|
|
661
682
|
configurable: true
|
|
662
683
|
});
|
|
684
|
+
Object.defineProperty(SeriesViewerDescription.prototype, "fireMouseLeaveOnManipulationStart", {
|
|
685
|
+
get: function () {
|
|
686
|
+
return this.ag;
|
|
687
|
+
},
|
|
688
|
+
set: function (a) {
|
|
689
|
+
this.ag = a;
|
|
690
|
+
this.g("FireMouseLeaveOnManipulationStart");
|
|
691
|
+
},
|
|
692
|
+
enumerable: false,
|
|
693
|
+
configurable: true
|
|
694
|
+
});
|
|
663
695
|
Object.defineProperty(SeriesViewerDescription.prototype, "effectiveViewport", {
|
|
664
696
|
get: function () {
|
|
665
697
|
return this.y;
|
|
@@ -684,10 +716,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
684
716
|
});
|
|
685
717
|
Object.defineProperty(SeriesViewerDescription.prototype, "useTiledZooming", {
|
|
686
718
|
get: function () {
|
|
687
|
-
return this.
|
|
719
|
+
return this.as;
|
|
688
720
|
},
|
|
689
721
|
set: function (a) {
|
|
690
|
-
this.
|
|
722
|
+
this.as = a;
|
|
691
723
|
this.g("UseTiledZooming");
|
|
692
724
|
},
|
|
693
725
|
enumerable: false,
|
|
@@ -695,10 +727,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
695
727
|
});
|
|
696
728
|
Object.defineProperty(SeriesViewerDescription.prototype, "preferHigherResolutionTiles", {
|
|
697
729
|
get: function () {
|
|
698
|
-
return this.
|
|
730
|
+
return this.am;
|
|
699
731
|
},
|
|
700
732
|
set: function (a) {
|
|
701
|
-
this.
|
|
733
|
+
this.am = a;
|
|
702
734
|
this.g("PreferHigherResolutionTiles");
|
|
703
735
|
},
|
|
704
736
|
enumerable: false,
|
|
@@ -706,10 +738,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
706
738
|
});
|
|
707
739
|
Object.defineProperty(SeriesViewerDescription.prototype, "zoomTileCacheSize", {
|
|
708
740
|
get: function () {
|
|
709
|
-
return this.
|
|
741
|
+
return this.d2;
|
|
710
742
|
},
|
|
711
743
|
set: function (a) {
|
|
712
|
-
this.
|
|
744
|
+
this.d2 = a;
|
|
713
745
|
this.g("ZoomTileCacheSize");
|
|
714
746
|
},
|
|
715
747
|
enumerable: false,
|
|
@@ -717,32 +749,76 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
717
749
|
});
|
|
718
750
|
Object.defineProperty(SeriesViewerDescription.prototype, "highlightingTransitionDuration", {
|
|
719
751
|
get: function () {
|
|
720
|
-
return this.
|
|
752
|
+
return this.dx;
|
|
721
753
|
},
|
|
722
754
|
set: function (a) {
|
|
723
|
-
this.
|
|
755
|
+
this.dx = a;
|
|
724
756
|
this.g("HighlightingTransitionDuration");
|
|
725
757
|
},
|
|
726
758
|
enumerable: false,
|
|
727
759
|
configurable: true
|
|
728
760
|
});
|
|
761
|
+
Object.defineProperty(SeriesViewerDescription.prototype, "resizeIdleMilliseconds", {
|
|
762
|
+
get: function () {
|
|
763
|
+
return this.dy;
|
|
764
|
+
},
|
|
765
|
+
set: function (a) {
|
|
766
|
+
this.dy = a;
|
|
767
|
+
this.g("ResizeIdleMilliseconds");
|
|
768
|
+
},
|
|
769
|
+
enumerable: false,
|
|
770
|
+
configurable: true
|
|
771
|
+
});
|
|
729
772
|
Object.defineProperty(SeriesViewerDescription.prototype, "selectionTransitionDuration", {
|
|
730
773
|
get: function () {
|
|
731
|
-
return this.
|
|
774
|
+
return this.d1;
|
|
732
775
|
},
|
|
733
776
|
set: function (a) {
|
|
734
|
-
this.
|
|
777
|
+
this.d1 = a;
|
|
735
778
|
this.g("SelectionTransitionDuration");
|
|
736
779
|
},
|
|
737
780
|
enumerable: false,
|
|
738
781
|
configurable: true
|
|
739
782
|
});
|
|
783
|
+
Object.defineProperty(SeriesViewerDescription.prototype, "selectionDismissDelayMilliseconds", {
|
|
784
|
+
get: function () {
|
|
785
|
+
return this.d0;
|
|
786
|
+
},
|
|
787
|
+
set: function (a) {
|
|
788
|
+
this.d0 = a;
|
|
789
|
+
this.g("SelectionDismissDelayMilliseconds");
|
|
790
|
+
},
|
|
791
|
+
enumerable: false,
|
|
792
|
+
configurable: true
|
|
793
|
+
});
|
|
794
|
+
Object.defineProperty(SeriesViewerDescription.prototype, "highlightingDismissDelayMilliseconds", {
|
|
795
|
+
get: function () {
|
|
796
|
+
return this.dw;
|
|
797
|
+
},
|
|
798
|
+
set: function (a) {
|
|
799
|
+
this.dw = a;
|
|
800
|
+
this.g("HighlightingDismissDelayMilliseconds");
|
|
801
|
+
},
|
|
802
|
+
enumerable: false,
|
|
803
|
+
configurable: true
|
|
804
|
+
});
|
|
805
|
+
Object.defineProperty(SeriesViewerDescription.prototype, "focusDismissDelayMilliseconds", {
|
|
806
|
+
get: function () {
|
|
807
|
+
return this.du;
|
|
808
|
+
},
|
|
809
|
+
set: function (a) {
|
|
810
|
+
this.du = a;
|
|
811
|
+
this.g("FocusDismissDelayMilliseconds");
|
|
812
|
+
},
|
|
813
|
+
enumerable: false,
|
|
814
|
+
configurable: true
|
|
815
|
+
});
|
|
740
816
|
Object.defineProperty(SeriesViewerDescription.prototype, "focusTransitionDuration", {
|
|
741
817
|
get: function () {
|
|
742
|
-
return this.
|
|
818
|
+
return this.dv;
|
|
743
819
|
},
|
|
744
820
|
set: function (a) {
|
|
745
|
-
this.
|
|
821
|
+
this.dv = a;
|
|
746
822
|
this.g("FocusTransitionDuration");
|
|
747
823
|
},
|
|
748
824
|
enumerable: false,
|
|
@@ -750,10 +826,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
750
826
|
});
|
|
751
827
|
Object.defineProperty(SeriesViewerDescription.prototype, "scrollbarsAnimationDuration", {
|
|
752
828
|
get: function () {
|
|
753
|
-
return this.
|
|
829
|
+
return this.dz;
|
|
754
830
|
},
|
|
755
831
|
set: function (a) {
|
|
756
|
-
this.
|
|
832
|
+
this.dz = a;
|
|
757
833
|
this.g("ScrollbarsAnimationDuration");
|
|
758
834
|
},
|
|
759
835
|
enumerable: false,
|
|
@@ -761,10 +837,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
761
837
|
});
|
|
762
838
|
Object.defineProperty(SeriesViewerDescription.prototype, "isPagePanningAllowed", {
|
|
763
839
|
get: function () {
|
|
764
|
-
return this.
|
|
840
|
+
return this.aj;
|
|
765
841
|
},
|
|
766
842
|
set: function (a) {
|
|
767
|
-
this.
|
|
843
|
+
this.aj = a;
|
|
768
844
|
this.g("IsPagePanningAllowed");
|
|
769
845
|
},
|
|
770
846
|
enumerable: false,
|
|
@@ -772,10 +848,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
772
848
|
});
|
|
773
849
|
Object.defineProperty(SeriesViewerDescription.prototype, "contentHitTestMode", {
|
|
774
850
|
get: function () {
|
|
775
|
-
return this.
|
|
851
|
+
return this.eg;
|
|
776
852
|
},
|
|
777
853
|
set: function (a) {
|
|
778
|
-
this.
|
|
854
|
+
this.eg = a;
|
|
779
855
|
this.g("ContentHitTestMode");
|
|
780
856
|
},
|
|
781
857
|
enumerable: false,
|
|
@@ -783,10 +859,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
783
859
|
});
|
|
784
860
|
Object.defineProperty(SeriesViewerDescription.prototype, "actualContentHitTestMode", {
|
|
785
861
|
get: function () {
|
|
786
|
-
return this.
|
|
862
|
+
return this.ec;
|
|
787
863
|
},
|
|
788
864
|
set: function (a) {
|
|
789
|
-
this.
|
|
865
|
+
this.ec = a;
|
|
790
866
|
this.g("ActualContentHitTestMode");
|
|
791
867
|
},
|
|
792
868
|
enumerable: false,
|
|
@@ -794,10 +870,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
794
870
|
});
|
|
795
871
|
Object.defineProperty(SeriesViewerDescription.prototype, "isSurfaceInteractionDisabled", {
|
|
796
872
|
get: function () {
|
|
797
|
-
return this.
|
|
873
|
+
return this.ak;
|
|
798
874
|
},
|
|
799
875
|
set: function (a) {
|
|
800
|
-
this.
|
|
876
|
+
this.ak = a;
|
|
801
877
|
this.g("IsSurfaceInteractionDisabled");
|
|
802
878
|
},
|
|
803
879
|
enumerable: false,
|
|
@@ -805,10 +881,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
805
881
|
});
|
|
806
882
|
Object.defineProperty(SeriesViewerDescription.prototype, "windowResponse", {
|
|
807
883
|
get: function () {
|
|
808
|
-
return this.
|
|
884
|
+
return this.gg;
|
|
809
885
|
},
|
|
810
886
|
set: function (a) {
|
|
811
|
-
this.
|
|
887
|
+
this.gg = a;
|
|
812
888
|
this.g("WindowResponse");
|
|
813
889
|
},
|
|
814
890
|
enumerable: false,
|
|
@@ -816,10 +892,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
816
892
|
});
|
|
817
893
|
Object.defineProperty(SeriesViewerDescription.prototype, "windowRectMinWidth", {
|
|
818
894
|
get: function () {
|
|
819
|
-
return this.
|
|
895
|
+
return this.cg;
|
|
820
896
|
},
|
|
821
897
|
set: function (a) {
|
|
822
|
-
this.
|
|
898
|
+
this.cg = a;
|
|
823
899
|
this.g("WindowRectMinWidth");
|
|
824
900
|
},
|
|
825
901
|
enumerable: false,
|
|
@@ -827,10 +903,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
827
903
|
});
|
|
828
904
|
Object.defineProperty(SeriesViewerDescription.prototype, "windowRectMinHeight", {
|
|
829
905
|
get: function () {
|
|
830
|
-
return this.
|
|
906
|
+
return this.cf;
|
|
831
907
|
},
|
|
832
908
|
set: function (a) {
|
|
833
|
-
this.
|
|
909
|
+
this.cf = a;
|
|
834
910
|
this.g("WindowRectMinHeight");
|
|
835
911
|
},
|
|
836
912
|
enumerable: false,
|
|
@@ -838,10 +914,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
838
914
|
});
|
|
839
915
|
Object.defineProperty(SeriesViewerDescription.prototype, "actualWindowRectMinWidth", {
|
|
840
916
|
get: function () {
|
|
841
|
-
return this.
|
|
917
|
+
return this.be;
|
|
842
918
|
},
|
|
843
919
|
set: function (a) {
|
|
844
|
-
this.
|
|
920
|
+
this.be = a;
|
|
845
921
|
this.g("ActualWindowRectMinWidth");
|
|
846
922
|
},
|
|
847
923
|
enumerable: false,
|
|
@@ -849,10 +925,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
849
925
|
});
|
|
850
926
|
Object.defineProperty(SeriesViewerDescription.prototype, "actualWindowRectMinHeight", {
|
|
851
927
|
get: function () {
|
|
852
|
-
return this.
|
|
928
|
+
return this.bd;
|
|
853
929
|
},
|
|
854
930
|
set: function (a) {
|
|
855
|
-
this.
|
|
931
|
+
this.bd = a;
|
|
856
932
|
this.g("ActualWindowRectMinHeight");
|
|
857
933
|
},
|
|
858
934
|
enumerable: false,
|
|
@@ -860,10 +936,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
860
936
|
});
|
|
861
937
|
Object.defineProperty(SeriesViewerDescription.prototype, "windowSizeMinWidth", {
|
|
862
938
|
get: function () {
|
|
863
|
-
return this.
|
|
939
|
+
return this.ci;
|
|
864
940
|
},
|
|
865
941
|
set: function (a) {
|
|
866
|
-
this.
|
|
942
|
+
this.ci = a;
|
|
867
943
|
this.g("WindowSizeMinWidth");
|
|
868
944
|
},
|
|
869
945
|
enumerable: false,
|
|
@@ -871,10 +947,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
871
947
|
});
|
|
872
948
|
Object.defineProperty(SeriesViewerDescription.prototype, "windowSizeMinHeight", {
|
|
873
949
|
get: function () {
|
|
874
|
-
return this.
|
|
950
|
+
return this.ch;
|
|
875
951
|
},
|
|
876
952
|
set: function (a) {
|
|
877
|
-
this.
|
|
953
|
+
this.ch = a;
|
|
878
954
|
this.g("WindowSizeMinHeight");
|
|
879
955
|
},
|
|
880
956
|
enumerable: false,
|
|
@@ -882,10 +958,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
882
958
|
});
|
|
883
959
|
Object.defineProperty(SeriesViewerDescription.prototype, "syncChannel", {
|
|
884
960
|
get: function () {
|
|
885
|
-
return this.
|
|
961
|
+
return this.f0;
|
|
886
962
|
},
|
|
887
963
|
set: function (a) {
|
|
888
|
-
this.
|
|
964
|
+
this.f0 = a;
|
|
889
965
|
this.g("SyncChannel");
|
|
890
966
|
},
|
|
891
967
|
enumerable: false,
|
|
@@ -893,10 +969,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
893
969
|
});
|
|
894
970
|
Object.defineProperty(SeriesViewerDescription.prototype, "crosshairVisibility", {
|
|
895
971
|
get: function () {
|
|
896
|
-
return this.
|
|
972
|
+
return this.eh;
|
|
897
973
|
},
|
|
898
974
|
set: function (a) {
|
|
899
|
-
this.
|
|
975
|
+
this.eh = a;
|
|
900
976
|
this.g("CrosshairVisibility");
|
|
901
977
|
},
|
|
902
978
|
enumerable: false,
|
|
@@ -904,10 +980,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
904
980
|
});
|
|
905
981
|
Object.defineProperty(SeriesViewerDescription.prototype, "horizontalCrosshairBrush", {
|
|
906
982
|
get: function () {
|
|
907
|
-
return this.
|
|
983
|
+
return this.er;
|
|
908
984
|
},
|
|
909
985
|
set: function (a) {
|
|
910
|
-
this.
|
|
986
|
+
this.er = a;
|
|
911
987
|
this.g("HorizontalCrosshairBrush");
|
|
912
988
|
},
|
|
913
989
|
enumerable: false,
|
|
@@ -915,10 +991,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
915
991
|
});
|
|
916
992
|
Object.defineProperty(SeriesViewerDescription.prototype, "verticalCrosshairBrush", {
|
|
917
993
|
get: function () {
|
|
918
|
-
return this.
|
|
994
|
+
return this.f8;
|
|
919
995
|
},
|
|
920
996
|
set: function (a) {
|
|
921
|
-
this.
|
|
997
|
+
this.f8 = a;
|
|
922
998
|
this.g("VerticalCrosshairBrush");
|
|
923
999
|
},
|
|
924
1000
|
enumerable: false,
|
|
@@ -926,10 +1002,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
926
1002
|
});
|
|
927
1003
|
Object.defineProperty(SeriesViewerDescription.prototype, "zoomCoercionMode", {
|
|
928
1004
|
get: function () {
|
|
929
|
-
return this.
|
|
1005
|
+
return this.gh;
|
|
930
1006
|
},
|
|
931
1007
|
set: function (a) {
|
|
932
|
-
this.
|
|
1008
|
+
this.gh = a;
|
|
933
1009
|
this.g("ZoomCoercionMode");
|
|
934
1010
|
},
|
|
935
1011
|
enumerable: false,
|
|
@@ -937,10 +1013,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
937
1013
|
});
|
|
938
1014
|
Object.defineProperty(SeriesViewerDescription.prototype, "plotAreaBackground", {
|
|
939
1015
|
get: function () {
|
|
940
|
-
return this.
|
|
1016
|
+
return this.e4;
|
|
941
1017
|
},
|
|
942
1018
|
set: function (a) {
|
|
943
|
-
this.
|
|
1019
|
+
this.e4 = a;
|
|
944
1020
|
this.g("PlotAreaBackground");
|
|
945
1021
|
},
|
|
946
1022
|
enumerable: false,
|
|
@@ -948,10 +1024,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
948
1024
|
});
|
|
949
1025
|
Object.defineProperty(SeriesViewerDescription.prototype, "shouldMatchZOrderToSeriesOrder", {
|
|
950
1026
|
get: function () {
|
|
951
|
-
return this.
|
|
1027
|
+
return this.ao;
|
|
952
1028
|
},
|
|
953
1029
|
set: function (a) {
|
|
954
|
-
this.
|
|
1030
|
+
this.ao = a;
|
|
955
1031
|
this.g("ShouldMatchZOrderToSeriesOrder");
|
|
956
1032
|
},
|
|
957
1033
|
enumerable: false,
|
|
@@ -959,10 +1035,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
959
1035
|
});
|
|
960
1036
|
Object.defineProperty(SeriesViewerDescription.prototype, "defaultInteraction", {
|
|
961
1037
|
get: function () {
|
|
962
|
-
return this.
|
|
1038
|
+
return this.ei;
|
|
963
1039
|
},
|
|
964
1040
|
set: function (a) {
|
|
965
|
-
this.
|
|
1041
|
+
this.ei = a;
|
|
966
1042
|
this.g("DefaultInteraction");
|
|
967
1043
|
},
|
|
968
1044
|
enumerable: false,
|
|
@@ -970,10 +1046,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
970
1046
|
});
|
|
971
1047
|
Object.defineProperty(SeriesViewerDescription.prototype, "interactionOverride", {
|
|
972
1048
|
get: function () {
|
|
973
|
-
return this.
|
|
1049
|
+
return this.ex;
|
|
974
1050
|
},
|
|
975
1051
|
set: function (a) {
|
|
976
|
-
this.
|
|
1052
|
+
this.ex = a;
|
|
977
1053
|
this.g("InteractionOverride");
|
|
978
1054
|
},
|
|
979
1055
|
enumerable: false,
|
|
@@ -981,10 +1057,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
981
1057
|
});
|
|
982
1058
|
Object.defineProperty(SeriesViewerDescription.prototype, "rightButtonDefaultInteraction", {
|
|
983
1059
|
get: function () {
|
|
984
|
-
return this.
|
|
1060
|
+
return this.ff;
|
|
985
1061
|
},
|
|
986
1062
|
set: function (a) {
|
|
987
|
-
this.
|
|
1063
|
+
this.ff = a;
|
|
988
1064
|
this.g("RightButtonDefaultInteraction");
|
|
989
1065
|
},
|
|
990
1066
|
enumerable: false,
|
|
@@ -992,10 +1068,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
992
1068
|
});
|
|
993
1069
|
Object.defineProperty(SeriesViewerDescription.prototype, "dragModifier", {
|
|
994
1070
|
get: function () {
|
|
995
|
-
return this.
|
|
1071
|
+
return this.ej;
|
|
996
1072
|
},
|
|
997
1073
|
set: function (a) {
|
|
998
|
-
this.
|
|
1074
|
+
this.ej = a;
|
|
999
1075
|
this.g("DragModifier");
|
|
1000
1076
|
},
|
|
1001
1077
|
enumerable: false,
|
|
@@ -1003,10 +1079,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1003
1079
|
});
|
|
1004
1080
|
Object.defineProperty(SeriesViewerDescription.prototype, "panModifier", {
|
|
1005
1081
|
get: function () {
|
|
1006
|
-
return this.
|
|
1082
|
+
return this.e3;
|
|
1007
1083
|
},
|
|
1008
1084
|
set: function (a) {
|
|
1009
|
-
this.
|
|
1085
|
+
this.e3 = a;
|
|
1010
1086
|
this.g("PanModifier");
|
|
1011
1087
|
},
|
|
1012
1088
|
enumerable: false,
|
|
@@ -1014,10 +1090,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1014
1090
|
});
|
|
1015
1091
|
Object.defineProperty(SeriesViewerDescription.prototype, "selectionModifier", {
|
|
1016
1092
|
get: function () {
|
|
1017
|
-
return this.
|
|
1093
|
+
return this.fk;
|
|
1018
1094
|
},
|
|
1019
1095
|
set: function (a) {
|
|
1020
|
-
this.
|
|
1096
|
+
this.fk = a;
|
|
1021
1097
|
this.g("SelectionModifier");
|
|
1022
1098
|
},
|
|
1023
1099
|
enumerable: false,
|
|
@@ -1036,10 +1112,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1036
1112
|
});
|
|
1037
1113
|
Object.defineProperty(SeriesViewerDescription.prototype, "highlightedValuesDisplayMode", {
|
|
1038
1114
|
get: function () {
|
|
1039
|
-
return this.
|
|
1115
|
+
return this.eo;
|
|
1040
1116
|
},
|
|
1041
1117
|
set: function (a) {
|
|
1042
|
-
this.
|
|
1118
|
+
this.eo = a;
|
|
1043
1119
|
this.g("HighlightedValuesDisplayMode");
|
|
1044
1120
|
},
|
|
1045
1121
|
enumerable: false,
|
|
@@ -1069,10 +1145,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1069
1145
|
});
|
|
1070
1146
|
Object.defineProperty(SeriesViewerDescription.prototype, "windowPositionHorizontal", {
|
|
1071
1147
|
get: function () {
|
|
1072
|
-
return this.
|
|
1148
|
+
return this.cd;
|
|
1073
1149
|
},
|
|
1074
1150
|
set: function (a) {
|
|
1075
|
-
this.
|
|
1151
|
+
this.cd = a;
|
|
1076
1152
|
this.g("WindowPositionHorizontal");
|
|
1077
1153
|
},
|
|
1078
1154
|
enumerable: false,
|
|
@@ -1080,10 +1156,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1080
1156
|
});
|
|
1081
1157
|
Object.defineProperty(SeriesViewerDescription.prototype, "windowPositionVertical", {
|
|
1082
1158
|
get: function () {
|
|
1083
|
-
return this.
|
|
1159
|
+
return this.ce;
|
|
1084
1160
|
},
|
|
1085
1161
|
set: function (a) {
|
|
1086
|
-
this.
|
|
1162
|
+
this.ce = a;
|
|
1087
1163
|
this.g("WindowPositionVertical");
|
|
1088
1164
|
},
|
|
1089
1165
|
enumerable: false,
|
|
@@ -1091,10 +1167,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1091
1167
|
});
|
|
1092
1168
|
Object.defineProperty(SeriesViewerDescription.prototype, "selectionBrush", {
|
|
1093
1169
|
get: function () {
|
|
1094
|
-
return this.
|
|
1170
|
+
return this.fi;
|
|
1095
1171
|
},
|
|
1096
1172
|
set: function (a) {
|
|
1097
|
-
this.
|
|
1173
|
+
this.fi = a;
|
|
1098
1174
|
this.g("SelectionBrush");
|
|
1099
1175
|
},
|
|
1100
1176
|
enumerable: false,
|
|
@@ -1102,10 +1178,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1102
1178
|
});
|
|
1103
1179
|
Object.defineProperty(SeriesViewerDescription.prototype, "focusBrush", {
|
|
1104
1180
|
get: function () {
|
|
1105
|
-
return this.
|
|
1181
|
+
return this.ek;
|
|
1106
1182
|
},
|
|
1107
1183
|
set: function (a) {
|
|
1108
|
-
this.
|
|
1184
|
+
this.ek = a;
|
|
1109
1185
|
this.g("FocusBrush");
|
|
1110
1186
|
},
|
|
1111
1187
|
enumerable: false,
|
|
@@ -1113,10 +1189,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1113
1189
|
});
|
|
1114
1190
|
Object.defineProperty(SeriesViewerDescription.prototype, "chartTitle", {
|
|
1115
1191
|
get: function () {
|
|
1116
|
-
return this.
|
|
1192
|
+
return this.ef;
|
|
1117
1193
|
},
|
|
1118
1194
|
set: function (a) {
|
|
1119
|
-
this.
|
|
1195
|
+
this.ef = a;
|
|
1120
1196
|
this.g("ChartTitle");
|
|
1121
1197
|
},
|
|
1122
1198
|
enumerable: false,
|
|
@@ -1124,10 +1200,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1124
1200
|
});
|
|
1125
1201
|
Object.defineProperty(SeriesViewerDescription.prototype, "titleHorizontalAlignment", {
|
|
1126
1202
|
get: function () {
|
|
1127
|
-
return this.
|
|
1203
|
+
return this.f5;
|
|
1128
1204
|
},
|
|
1129
1205
|
set: function (a) {
|
|
1130
|
-
this.
|
|
1206
|
+
this.f5 = a;
|
|
1131
1207
|
this.g("TitleHorizontalAlignment");
|
|
1132
1208
|
},
|
|
1133
1209
|
enumerable: false,
|
|
@@ -1135,10 +1211,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1135
1211
|
});
|
|
1136
1212
|
Object.defineProperty(SeriesViewerDescription.prototype, "subtitleHorizontalAlignment", {
|
|
1137
1213
|
get: function () {
|
|
1138
|
-
return this.
|
|
1214
|
+
return this.fx;
|
|
1139
1215
|
},
|
|
1140
1216
|
set: function (a) {
|
|
1141
|
-
this.
|
|
1217
|
+
this.fx = a;
|
|
1142
1218
|
this.g("SubtitleHorizontalAlignment");
|
|
1143
1219
|
},
|
|
1144
1220
|
enumerable: false,
|
|
@@ -1146,10 +1222,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1146
1222
|
});
|
|
1147
1223
|
Object.defineProperty(SeriesViewerDescription.prototype, "titleTextStyle", {
|
|
1148
1224
|
get: function () {
|
|
1149
|
-
return this.
|
|
1225
|
+
return this.f7;
|
|
1150
1226
|
},
|
|
1151
1227
|
set: function (a) {
|
|
1152
|
-
this.
|
|
1228
|
+
this.f7 = a;
|
|
1153
1229
|
this.g("TitleTextStyle");
|
|
1154
1230
|
},
|
|
1155
1231
|
enumerable: false,
|
|
@@ -1157,10 +1233,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1157
1233
|
});
|
|
1158
1234
|
Object.defineProperty(SeriesViewerDescription.prototype, "subtitleTextStyle", {
|
|
1159
1235
|
get: function () {
|
|
1160
|
-
return this.
|
|
1236
|
+
return this.fz;
|
|
1161
1237
|
},
|
|
1162
1238
|
set: function (a) {
|
|
1163
|
-
this.
|
|
1239
|
+
this.fz = a;
|
|
1164
1240
|
this.g("SubtitleTextStyle");
|
|
1165
1241
|
},
|
|
1166
1242
|
enumerable: false,
|
|
@@ -1168,10 +1244,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1168
1244
|
});
|
|
1169
1245
|
Object.defineProperty(SeriesViewerDescription.prototype, "titleTextColor", {
|
|
1170
1246
|
get: function () {
|
|
1171
|
-
return this.
|
|
1247
|
+
return this.f6;
|
|
1172
1248
|
},
|
|
1173
1249
|
set: function (a) {
|
|
1174
|
-
this.
|
|
1250
|
+
this.f6 = a;
|
|
1175
1251
|
this.g("TitleTextColor");
|
|
1176
1252
|
},
|
|
1177
1253
|
enumerable: false,
|
|
@@ -1179,10 +1255,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1179
1255
|
});
|
|
1180
1256
|
Object.defineProperty(SeriesViewerDescription.prototype, "subtitleTextColor", {
|
|
1181
1257
|
get: function () {
|
|
1182
|
-
return this.
|
|
1258
|
+
return this.fy;
|
|
1183
1259
|
},
|
|
1184
1260
|
set: function (a) {
|
|
1185
|
-
this.
|
|
1261
|
+
this.fy = a;
|
|
1186
1262
|
this.g("SubtitleTextColor");
|
|
1187
1263
|
},
|
|
1188
1264
|
enumerable: false,
|
|
@@ -1190,10 +1266,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1190
1266
|
});
|
|
1191
1267
|
Object.defineProperty(SeriesViewerDescription.prototype, "titleTopMargin", {
|
|
1192
1268
|
get: function () {
|
|
1193
|
-
return this.
|
|
1269
|
+
return this.b4;
|
|
1194
1270
|
},
|
|
1195
1271
|
set: function (a) {
|
|
1196
|
-
this.
|
|
1272
|
+
this.b4 = a;
|
|
1197
1273
|
this.g("TitleTopMargin");
|
|
1198
1274
|
},
|
|
1199
1275
|
enumerable: false,
|
|
@@ -1201,10 +1277,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1201
1277
|
});
|
|
1202
1278
|
Object.defineProperty(SeriesViewerDescription.prototype, "titleLeftMargin", {
|
|
1203
1279
|
get: function () {
|
|
1204
|
-
return this.
|
|
1280
|
+
return this.b2;
|
|
1205
1281
|
},
|
|
1206
1282
|
set: function (a) {
|
|
1207
|
-
this.
|
|
1283
|
+
this.b2 = a;
|
|
1208
1284
|
this.g("TitleLeftMargin");
|
|
1209
1285
|
},
|
|
1210
1286
|
enumerable: false,
|
|
@@ -1212,10 +1288,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1212
1288
|
});
|
|
1213
1289
|
Object.defineProperty(SeriesViewerDescription.prototype, "titleRightMargin", {
|
|
1214
1290
|
get: function () {
|
|
1215
|
-
return this.
|
|
1291
|
+
return this.b3;
|
|
1216
1292
|
},
|
|
1217
1293
|
set: function (a) {
|
|
1218
|
-
this.
|
|
1294
|
+
this.b3 = a;
|
|
1219
1295
|
this.g("TitleRightMargin");
|
|
1220
1296
|
},
|
|
1221
1297
|
enumerable: false,
|
|
@@ -1223,10 +1299,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1223
1299
|
});
|
|
1224
1300
|
Object.defineProperty(SeriesViewerDescription.prototype, "titleBottomMargin", {
|
|
1225
1301
|
get: function () {
|
|
1226
|
-
return this.
|
|
1302
|
+
return this.b0;
|
|
1227
1303
|
},
|
|
1228
1304
|
set: function (a) {
|
|
1229
|
-
this.
|
|
1305
|
+
this.b0 = a;
|
|
1230
1306
|
this.g("TitleBottomMargin");
|
|
1231
1307
|
},
|
|
1232
1308
|
enumerable: false,
|
|
@@ -1234,10 +1310,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1234
1310
|
});
|
|
1235
1311
|
Object.defineProperty(SeriesViewerDescription.prototype, "subtitleTopMargin", {
|
|
1236
1312
|
get: function () {
|
|
1237
|
-
return this.
|
|
1313
|
+
return this.bz;
|
|
1238
1314
|
},
|
|
1239
1315
|
set: function (a) {
|
|
1240
|
-
this.
|
|
1316
|
+
this.bz = a;
|
|
1241
1317
|
this.g("SubtitleTopMargin");
|
|
1242
1318
|
},
|
|
1243
1319
|
enumerable: false,
|
|
@@ -1245,10 +1321,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1245
1321
|
});
|
|
1246
1322
|
Object.defineProperty(SeriesViewerDescription.prototype, "subtitleLeftMargin", {
|
|
1247
1323
|
get: function () {
|
|
1248
|
-
return this.
|
|
1324
|
+
return this.bx;
|
|
1249
1325
|
},
|
|
1250
1326
|
set: function (a) {
|
|
1251
|
-
this.
|
|
1327
|
+
this.bx = a;
|
|
1252
1328
|
this.g("SubtitleLeftMargin");
|
|
1253
1329
|
},
|
|
1254
1330
|
enumerable: false,
|
|
@@ -1256,10 +1332,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1256
1332
|
});
|
|
1257
1333
|
Object.defineProperty(SeriesViewerDescription.prototype, "subtitleRightMargin", {
|
|
1258
1334
|
get: function () {
|
|
1259
|
-
return this.
|
|
1335
|
+
return this.by;
|
|
1260
1336
|
},
|
|
1261
1337
|
set: function (a) {
|
|
1262
|
-
this.
|
|
1338
|
+
this.by = a;
|
|
1263
1339
|
this.g("SubtitleRightMargin");
|
|
1264
1340
|
},
|
|
1265
1341
|
enumerable: false,
|
|
@@ -1267,10 +1343,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1267
1343
|
});
|
|
1268
1344
|
Object.defineProperty(SeriesViewerDescription.prototype, "subtitleBottomMargin", {
|
|
1269
1345
|
get: function () {
|
|
1270
|
-
return this.
|
|
1346
|
+
return this.bv;
|
|
1271
1347
|
},
|
|
1272
1348
|
set: function (a) {
|
|
1273
|
-
this.
|
|
1349
|
+
this.bv = a;
|
|
1274
1350
|
this.g("SubtitleBottomMargin");
|
|
1275
1351
|
},
|
|
1276
1352
|
enumerable: false,
|
|
@@ -1278,10 +1354,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1278
1354
|
});
|
|
1279
1355
|
Object.defineProperty(SeriesViewerDescription.prototype, "subtitle", {
|
|
1280
1356
|
get: function () {
|
|
1281
|
-
return this.
|
|
1357
|
+
return this.ft;
|
|
1282
1358
|
},
|
|
1283
1359
|
set: function (a) {
|
|
1284
|
-
this.
|
|
1360
|
+
this.ft = a;
|
|
1285
1361
|
this.g("Subtitle");
|
|
1286
1362
|
},
|
|
1287
1363
|
enumerable: false,
|
|
@@ -1289,10 +1365,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1289
1365
|
});
|
|
1290
1366
|
Object.defineProperty(SeriesViewerDescription.prototype, "topMargin", {
|
|
1291
1367
|
get: function () {
|
|
1292
|
-
return this.
|
|
1368
|
+
return this.b5;
|
|
1293
1369
|
},
|
|
1294
1370
|
set: function (a) {
|
|
1295
|
-
this.
|
|
1371
|
+
this.b5 = a;
|
|
1296
1372
|
this.g("TopMargin");
|
|
1297
1373
|
},
|
|
1298
1374
|
enumerable: false,
|
|
@@ -1300,10 +1376,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1300
1376
|
});
|
|
1301
1377
|
Object.defineProperty(SeriesViewerDescription.prototype, "leftMargin", {
|
|
1302
1378
|
get: function () {
|
|
1303
|
-
return this.
|
|
1379
|
+
return this.br;
|
|
1304
1380
|
},
|
|
1305
1381
|
set: function (a) {
|
|
1306
|
-
this.
|
|
1382
|
+
this.br = a;
|
|
1307
1383
|
this.g("LeftMargin");
|
|
1308
1384
|
},
|
|
1309
1385
|
enumerable: false,
|
|
@@ -1311,10 +1387,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1311
1387
|
});
|
|
1312
1388
|
Object.defineProperty(SeriesViewerDescription.prototype, "rightMargin", {
|
|
1313
1389
|
get: function () {
|
|
1314
|
-
return this.
|
|
1390
|
+
return this.bu;
|
|
1315
1391
|
},
|
|
1316
1392
|
set: function (a) {
|
|
1317
|
-
this.
|
|
1393
|
+
this.bu = a;
|
|
1318
1394
|
this.g("RightMargin");
|
|
1319
1395
|
},
|
|
1320
1396
|
enumerable: false,
|
|
@@ -1322,10 +1398,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1322
1398
|
});
|
|
1323
1399
|
Object.defineProperty(SeriesViewerDescription.prototype, "bottomMargin", {
|
|
1324
1400
|
get: function () {
|
|
1325
|
-
return this.
|
|
1401
|
+
return this.bh;
|
|
1326
1402
|
},
|
|
1327
1403
|
set: function (a) {
|
|
1328
|
-
this.
|
|
1404
|
+
this.bh = a;
|
|
1329
1405
|
this.g("BottomMargin");
|
|
1330
1406
|
},
|
|
1331
1407
|
enumerable: false,
|
|
@@ -1333,10 +1409,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1333
1409
|
});
|
|
1334
1410
|
Object.defineProperty(SeriesViewerDescription.prototype, "autoMarginWidth", {
|
|
1335
1411
|
get: function () {
|
|
1336
|
-
return this.
|
|
1412
|
+
return this.bg;
|
|
1337
1413
|
},
|
|
1338
1414
|
set: function (a) {
|
|
1339
|
-
this.
|
|
1415
|
+
this.bg = a;
|
|
1340
1416
|
this.g("AutoMarginWidth");
|
|
1341
1417
|
},
|
|
1342
1418
|
enumerable: false,
|
|
@@ -1344,10 +1420,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1344
1420
|
});
|
|
1345
1421
|
Object.defineProperty(SeriesViewerDescription.prototype, "autoMarginHeight", {
|
|
1346
1422
|
get: function () {
|
|
1347
|
-
return this.
|
|
1423
|
+
return this.bf;
|
|
1348
1424
|
},
|
|
1349
1425
|
set: function (a) {
|
|
1350
|
-
this.
|
|
1426
|
+
this.bf = a;
|
|
1351
1427
|
this.g("AutoMarginHeight");
|
|
1352
1428
|
},
|
|
1353
1429
|
enumerable: false,
|
|
@@ -1355,10 +1431,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1355
1431
|
});
|
|
1356
1432
|
Object.defineProperty(SeriesViewerDescription.prototype, "isAntiAliasingEnabledDuringInteraction", {
|
|
1357
1433
|
get: function () {
|
|
1358
|
-
return this.
|
|
1434
|
+
return this.ai;
|
|
1359
1435
|
},
|
|
1360
1436
|
set: function (a) {
|
|
1361
|
-
this.
|
|
1437
|
+
this.ai = a;
|
|
1362
1438
|
this.g("IsAntiAliasingEnabledDuringInteraction");
|
|
1363
1439
|
},
|
|
1364
1440
|
enumerable: false,
|
|
@@ -1366,10 +1442,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1366
1442
|
});
|
|
1367
1443
|
Object.defineProperty(SeriesViewerDescription.prototype, "pixelScalingRatio", {
|
|
1368
1444
|
get: function () {
|
|
1369
|
-
return this.
|
|
1445
|
+
return this.bs;
|
|
1370
1446
|
},
|
|
1371
1447
|
set: function (a) {
|
|
1372
|
-
this.
|
|
1448
|
+
this.bs = a;
|
|
1373
1449
|
this.g("PixelScalingRatio");
|
|
1374
1450
|
},
|
|
1375
1451
|
enumerable: false,
|
|
@@ -1377,10 +1453,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1377
1453
|
});
|
|
1378
1454
|
Object.defineProperty(SeriesViewerDescription.prototype, "interactionPixelScalingRatio", {
|
|
1379
1455
|
get: function () {
|
|
1380
|
-
return this.
|
|
1456
|
+
return this.bq;
|
|
1381
1457
|
},
|
|
1382
1458
|
set: function (a) {
|
|
1383
|
-
this.
|
|
1459
|
+
this.bq = a;
|
|
1384
1460
|
this.g("InteractionPixelScalingRatio");
|
|
1385
1461
|
},
|
|
1386
1462
|
enumerable: false,
|
|
@@ -1388,10 +1464,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1388
1464
|
});
|
|
1389
1465
|
Object.defineProperty(SeriesViewerDescription.prototype, "actualPixelScalingRatio", {
|
|
1390
1466
|
get: function () {
|
|
1391
|
-
return this.
|
|
1467
|
+
return this.ba;
|
|
1392
1468
|
},
|
|
1393
1469
|
set: function (a) {
|
|
1394
|
-
this.
|
|
1470
|
+
this.ba = a;
|
|
1395
1471
|
this.g("ActualPixelScalingRatio");
|
|
1396
1472
|
},
|
|
1397
1473
|
enumerable: false,
|
|
@@ -1399,10 +1475,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1399
1475
|
});
|
|
1400
1476
|
Object.defineProperty(SeriesViewerDescription.prototype, "actualInteractionPixelScalingRatio", {
|
|
1401
1477
|
get: function () {
|
|
1402
|
-
return this.
|
|
1478
|
+
return this.a9;
|
|
1403
1479
|
},
|
|
1404
1480
|
set: function (a) {
|
|
1405
|
-
this.
|
|
1481
|
+
this.a9 = a;
|
|
1406
1482
|
this.g("ActualInteractionPixelScalingRatio");
|
|
1407
1483
|
},
|
|
1408
1484
|
enumerable: false,
|
|
@@ -1410,10 +1486,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1410
1486
|
});
|
|
1411
1487
|
Object.defineProperty(SeriesViewerDescription.prototype, "shouldPanOnMaximumZoom", {
|
|
1412
1488
|
get: function () {
|
|
1413
|
-
return this.
|
|
1489
|
+
return this.ap;
|
|
1414
1490
|
},
|
|
1415
1491
|
set: function (a) {
|
|
1416
|
-
this.
|
|
1492
|
+
this.ap = a;
|
|
1417
1493
|
this.g("ShouldPanOnMaximumZoom");
|
|
1418
1494
|
},
|
|
1419
1495
|
enumerable: false,
|
|
@@ -1432,10 +1508,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1432
1508
|
});
|
|
1433
1509
|
Object.defineProperty(SeriesViewerDescription.prototype, "actualWindowPositionHorizontal", {
|
|
1434
1510
|
get: function () {
|
|
1435
|
-
return this.
|
|
1511
|
+
return this.bb;
|
|
1436
1512
|
},
|
|
1437
1513
|
set: function (a) {
|
|
1438
|
-
this.
|
|
1514
|
+
this.bb = a;
|
|
1439
1515
|
this.g("ActualWindowPositionHorizontal");
|
|
1440
1516
|
},
|
|
1441
1517
|
enumerable: false,
|
|
@@ -1443,21 +1519,54 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1443
1519
|
});
|
|
1444
1520
|
Object.defineProperty(SeriesViewerDescription.prototype, "actualWindowPositionVertical", {
|
|
1445
1521
|
get: function () {
|
|
1446
|
-
return this.
|
|
1522
|
+
return this.bc;
|
|
1447
1523
|
},
|
|
1448
1524
|
set: function (a) {
|
|
1449
|
-
this.
|
|
1525
|
+
this.bc = a;
|
|
1450
1526
|
this.g("ActualWindowPositionVertical");
|
|
1451
1527
|
},
|
|
1452
1528
|
enumerable: false,
|
|
1453
1529
|
configurable: true
|
|
1454
1530
|
});
|
|
1531
|
+
Object.defineProperty(SeriesViewerDescription.prototype, "previewPathStroke", {
|
|
1532
|
+
get: function () {
|
|
1533
|
+
return this.fc;
|
|
1534
|
+
},
|
|
1535
|
+
set: function (a) {
|
|
1536
|
+
this.fc = a;
|
|
1537
|
+
this.g("PreviewPathStroke");
|
|
1538
|
+
},
|
|
1539
|
+
enumerable: false,
|
|
1540
|
+
configurable: true
|
|
1541
|
+
});
|
|
1542
|
+
Object.defineProperty(SeriesViewerDescription.prototype, "previewPathFill", {
|
|
1543
|
+
get: function () {
|
|
1544
|
+
return this.fb;
|
|
1545
|
+
},
|
|
1546
|
+
set: function (a) {
|
|
1547
|
+
this.fb = a;
|
|
1548
|
+
this.g("PreviewPathFill");
|
|
1549
|
+
},
|
|
1550
|
+
enumerable: false,
|
|
1551
|
+
configurable: true
|
|
1552
|
+
});
|
|
1553
|
+
Object.defineProperty(SeriesViewerDescription.prototype, "previewPathOpacity", {
|
|
1554
|
+
get: function () {
|
|
1555
|
+
return this.bt;
|
|
1556
|
+
},
|
|
1557
|
+
set: function (a) {
|
|
1558
|
+
this.bt = a;
|
|
1559
|
+
this.g("PreviewPathOpacity");
|
|
1560
|
+
},
|
|
1561
|
+
enumerable: false,
|
|
1562
|
+
configurable: true
|
|
1563
|
+
});
|
|
1455
1564
|
Object.defineProperty(SeriesViewerDescription.prototype, "plotAreaMouseLeftButtonDownRef", {
|
|
1456
1565
|
get: function () {
|
|
1457
|
-
return this.
|
|
1566
|
+
return this.e8;
|
|
1458
1567
|
},
|
|
1459
1568
|
set: function (a) {
|
|
1460
|
-
this.
|
|
1569
|
+
this.e8 = a;
|
|
1461
1570
|
this.g("PlotAreaMouseLeftButtonDownRef");
|
|
1462
1571
|
},
|
|
1463
1572
|
enumerable: false,
|
|
@@ -1465,10 +1574,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1465
1574
|
});
|
|
1466
1575
|
Object.defineProperty(SeriesViewerDescription.prototype, "plotAreaMouseLeftButtonUpRef", {
|
|
1467
1576
|
get: function () {
|
|
1468
|
-
return this.
|
|
1577
|
+
return this.e9;
|
|
1469
1578
|
},
|
|
1470
1579
|
set: function (a) {
|
|
1471
|
-
this.
|
|
1580
|
+
this.e9 = a;
|
|
1472
1581
|
this.g("PlotAreaMouseLeftButtonUpRef");
|
|
1473
1582
|
},
|
|
1474
1583
|
enumerable: false,
|
|
@@ -1476,10 +1585,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1476
1585
|
});
|
|
1477
1586
|
Object.defineProperty(SeriesViewerDescription.prototype, "plotAreaClickedRef", {
|
|
1478
1587
|
get: function () {
|
|
1479
|
-
return this.
|
|
1588
|
+
return this.e5;
|
|
1480
1589
|
},
|
|
1481
1590
|
set: function (a) {
|
|
1482
|
-
this.
|
|
1591
|
+
this.e5 = a;
|
|
1483
1592
|
this.g("PlotAreaClickedRef");
|
|
1484
1593
|
},
|
|
1485
1594
|
enumerable: false,
|
|
@@ -1487,10 +1596,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1487
1596
|
});
|
|
1488
1597
|
Object.defineProperty(SeriesViewerDescription.prototype, "plotAreaMouseEnterRef", {
|
|
1489
1598
|
get: function () {
|
|
1490
|
-
return this.
|
|
1599
|
+
return this.e6;
|
|
1491
1600
|
},
|
|
1492
1601
|
set: function (a) {
|
|
1493
|
-
this.
|
|
1602
|
+
this.e6 = a;
|
|
1494
1603
|
this.g("PlotAreaMouseEnterRef");
|
|
1495
1604
|
},
|
|
1496
1605
|
enumerable: false,
|
|
@@ -1498,10 +1607,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1498
1607
|
});
|
|
1499
1608
|
Object.defineProperty(SeriesViewerDescription.prototype, "plotAreaMouseLeaveRef", {
|
|
1500
1609
|
get: function () {
|
|
1501
|
-
return this.
|
|
1610
|
+
return this.e7;
|
|
1502
1611
|
},
|
|
1503
1612
|
set: function (a) {
|
|
1504
|
-
this.
|
|
1613
|
+
this.e7 = a;
|
|
1505
1614
|
this.g("PlotAreaMouseLeaveRef");
|
|
1506
1615
|
},
|
|
1507
1616
|
enumerable: false,
|
|
@@ -1509,10 +1618,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1509
1618
|
});
|
|
1510
1619
|
Object.defineProperty(SeriesViewerDescription.prototype, "plotAreaMouseOverRef", {
|
|
1511
1620
|
get: function () {
|
|
1512
|
-
return this.
|
|
1621
|
+
return this.fa;
|
|
1513
1622
|
},
|
|
1514
1623
|
set: function (a) {
|
|
1515
|
-
this.
|
|
1624
|
+
this.fa = a;
|
|
1516
1625
|
this.g("PlotAreaMouseOverRef");
|
|
1517
1626
|
},
|
|
1518
1627
|
enumerable: false,
|
|
@@ -1520,10 +1629,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1520
1629
|
});
|
|
1521
1630
|
Object.defineProperty(SeriesViewerDescription.prototype, "seriesCursorMouseMoveRef", {
|
|
1522
1631
|
get: function () {
|
|
1523
|
-
return this.
|
|
1632
|
+
return this.fm;
|
|
1524
1633
|
},
|
|
1525
1634
|
set: function (a) {
|
|
1526
|
-
this.
|
|
1635
|
+
this.fm = a;
|
|
1527
1636
|
this.g("SeriesCursorMouseMoveRef");
|
|
1528
1637
|
},
|
|
1529
1638
|
enumerable: false,
|
|
@@ -1531,10 +1640,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1531
1640
|
});
|
|
1532
1641
|
Object.defineProperty(SeriesViewerDescription.prototype, "seriesMouseLeftButtonDownRef", {
|
|
1533
1642
|
get: function () {
|
|
1534
|
-
return this.
|
|
1643
|
+
return this.fp;
|
|
1535
1644
|
},
|
|
1536
1645
|
set: function (a) {
|
|
1537
|
-
this.
|
|
1646
|
+
this.fp = a;
|
|
1538
1647
|
this.g("SeriesMouseLeftButtonDownRef");
|
|
1539
1648
|
},
|
|
1540
1649
|
enumerable: false,
|
|
@@ -1542,10 +1651,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1542
1651
|
});
|
|
1543
1652
|
Object.defineProperty(SeriesViewerDescription.prototype, "seriesMouseLeftButtonUpRef", {
|
|
1544
1653
|
get: function () {
|
|
1545
|
-
return this.
|
|
1654
|
+
return this.fq;
|
|
1546
1655
|
},
|
|
1547
1656
|
set: function (a) {
|
|
1548
|
-
this.
|
|
1657
|
+
this.fq = a;
|
|
1549
1658
|
this.g("SeriesMouseLeftButtonUpRef");
|
|
1550
1659
|
},
|
|
1551
1660
|
enumerable: false,
|
|
@@ -1553,10 +1662,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1553
1662
|
});
|
|
1554
1663
|
Object.defineProperty(SeriesViewerDescription.prototype, "seriesClickRef", {
|
|
1555
1664
|
get: function () {
|
|
1556
|
-
return this.
|
|
1665
|
+
return this.fl;
|
|
1557
1666
|
},
|
|
1558
1667
|
set: function (a) {
|
|
1559
|
-
this.
|
|
1668
|
+
this.fl = a;
|
|
1560
1669
|
this.g("SeriesClickRef");
|
|
1561
1670
|
},
|
|
1562
1671
|
enumerable: false,
|
|
@@ -1564,10 +1673,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1564
1673
|
});
|
|
1565
1674
|
Object.defineProperty(SeriesViewerDescription.prototype, "seriesMouseMoveRef", {
|
|
1566
1675
|
get: function () {
|
|
1567
|
-
return this.
|
|
1676
|
+
return this.fr;
|
|
1568
1677
|
},
|
|
1569
1678
|
set: function (a) {
|
|
1570
|
-
this.
|
|
1679
|
+
this.fr = a;
|
|
1571
1680
|
this.g("SeriesMouseMoveRef");
|
|
1572
1681
|
},
|
|
1573
1682
|
enumerable: false,
|
|
@@ -1575,10 +1684,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1575
1684
|
});
|
|
1576
1685
|
Object.defineProperty(SeriesViewerDescription.prototype, "seriesMouseEnterRef", {
|
|
1577
1686
|
get: function () {
|
|
1578
|
-
return this.
|
|
1687
|
+
return this.fn;
|
|
1579
1688
|
},
|
|
1580
1689
|
set: function (a) {
|
|
1581
|
-
this.
|
|
1690
|
+
this.fn = a;
|
|
1582
1691
|
this.g("SeriesMouseEnterRef");
|
|
1583
1692
|
},
|
|
1584
1693
|
enumerable: false,
|
|
@@ -1586,21 +1695,32 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1586
1695
|
});
|
|
1587
1696
|
Object.defineProperty(SeriesViewerDescription.prototype, "seriesMouseLeaveRef", {
|
|
1588
1697
|
get: function () {
|
|
1589
|
-
return this.
|
|
1698
|
+
return this.fo;
|
|
1590
1699
|
},
|
|
1591
1700
|
set: function (a) {
|
|
1592
|
-
this.
|
|
1701
|
+
this.fo = a;
|
|
1593
1702
|
this.g("SeriesMouseLeaveRef");
|
|
1594
1703
|
},
|
|
1595
1704
|
enumerable: false,
|
|
1596
1705
|
configurable: true
|
|
1597
1706
|
});
|
|
1707
|
+
Object.defineProperty(SeriesViewerDescription.prototype, "resizeIdleRef", {
|
|
1708
|
+
get: function () {
|
|
1709
|
+
return this.fe;
|
|
1710
|
+
},
|
|
1711
|
+
set: function (a) {
|
|
1712
|
+
this.fe = a;
|
|
1713
|
+
this.g("ResizeIdleRef");
|
|
1714
|
+
},
|
|
1715
|
+
enumerable: false,
|
|
1716
|
+
configurable: true
|
|
1717
|
+
});
|
|
1598
1718
|
Object.defineProperty(SeriesViewerDescription.prototype, "viewerManipulationStartingRef", {
|
|
1599
1719
|
get: function () {
|
|
1600
|
-
return this.
|
|
1720
|
+
return this.ge;
|
|
1601
1721
|
},
|
|
1602
1722
|
set: function (a) {
|
|
1603
|
-
this.
|
|
1723
|
+
this.ge = a;
|
|
1604
1724
|
this.g("ViewerManipulationStartingRef");
|
|
1605
1725
|
},
|
|
1606
1726
|
enumerable: false,
|
|
@@ -1608,10 +1728,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1608
1728
|
});
|
|
1609
1729
|
Object.defineProperty(SeriesViewerDescription.prototype, "viewerManipulationEndingRef", {
|
|
1610
1730
|
get: function () {
|
|
1611
|
-
return this.
|
|
1731
|
+
return this.gd;
|
|
1612
1732
|
},
|
|
1613
1733
|
set: function (a) {
|
|
1614
|
-
this.
|
|
1734
|
+
this.gd = a;
|
|
1615
1735
|
this.g("ViewerManipulationEndingRef");
|
|
1616
1736
|
},
|
|
1617
1737
|
enumerable: false,
|
|
@@ -1619,10 +1739,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1619
1739
|
});
|
|
1620
1740
|
Object.defineProperty(SeriesViewerDescription.prototype, "windowRectChangedRef", {
|
|
1621
1741
|
get: function () {
|
|
1622
|
-
return this.
|
|
1742
|
+
return this.gf;
|
|
1623
1743
|
},
|
|
1624
1744
|
set: function (a) {
|
|
1625
|
-
this.
|
|
1745
|
+
this.gf = a;
|
|
1626
1746
|
this.g("WindowRectChangedRef");
|
|
1627
1747
|
},
|
|
1628
1748
|
enumerable: false,
|
|
@@ -1630,10 +1750,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1630
1750
|
});
|
|
1631
1751
|
Object.defineProperty(SeriesViewerDescription.prototype, "sizeChangedRef", {
|
|
1632
1752
|
get: function () {
|
|
1633
|
-
return this.
|
|
1753
|
+
return this.fs;
|
|
1634
1754
|
},
|
|
1635
1755
|
set: function (a) {
|
|
1636
|
-
this.
|
|
1756
|
+
this.fs = a;
|
|
1637
1757
|
this.g("SizeChangedRef");
|
|
1638
1758
|
},
|
|
1639
1759
|
enumerable: false,
|
|
@@ -1641,10 +1761,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1641
1761
|
});
|
|
1642
1762
|
Object.defineProperty(SeriesViewerDescription.prototype, "actualWindowRectChangedRef", {
|
|
1643
1763
|
get: function () {
|
|
1644
|
-
return this.
|
|
1764
|
+
return this.ed;
|
|
1645
1765
|
},
|
|
1646
1766
|
set: function (a) {
|
|
1647
|
-
this.
|
|
1767
|
+
this.ed = a;
|
|
1648
1768
|
this.g("ActualWindowRectChangedRef");
|
|
1649
1769
|
},
|
|
1650
1770
|
enumerable: false,
|
|
@@ -1652,10 +1772,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1652
1772
|
});
|
|
1653
1773
|
Object.defineProperty(SeriesViewerDescription.prototype, "gridAreaRectChangedRef", {
|
|
1654
1774
|
get: function () {
|
|
1655
|
-
return this.
|
|
1775
|
+
return this.en;
|
|
1656
1776
|
},
|
|
1657
1777
|
set: function (a) {
|
|
1658
|
-
this.
|
|
1778
|
+
this.en = a;
|
|
1659
1779
|
this.g("GridAreaRectChangedRef");
|
|
1660
1780
|
},
|
|
1661
1781
|
enumerable: false,
|
|
@@ -1663,10 +1783,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1663
1783
|
});
|
|
1664
1784
|
Object.defineProperty(SeriesViewerDescription.prototype, "selectedSeriesItemsChangedRef", {
|
|
1665
1785
|
get: function () {
|
|
1666
|
-
return this.
|
|
1786
|
+
return this.fg;
|
|
1667
1787
|
},
|
|
1668
1788
|
set: function (a) {
|
|
1669
|
-
this.
|
|
1789
|
+
this.fg = a;
|
|
1670
1790
|
this.g("SelectedSeriesItemsChangedRef");
|
|
1671
1791
|
},
|
|
1672
1792
|
enumerable: false,
|
|
@@ -1674,10 +1794,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1674
1794
|
});
|
|
1675
1795
|
Object.defineProperty(SeriesViewerDescription.prototype, "focusedSeriesItemsChangedRef", {
|
|
1676
1796
|
get: function () {
|
|
1677
|
-
return this.
|
|
1797
|
+
return this.el;
|
|
1678
1798
|
},
|
|
1679
1799
|
set: function (a) {
|
|
1680
|
-
this.
|
|
1800
|
+
this.el = a;
|
|
1681
1801
|
this.g("FocusedSeriesItemsChangedRef");
|
|
1682
1802
|
},
|
|
1683
1803
|
enumerable: false,
|
|
@@ -1685,10 +1805,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1685
1805
|
});
|
|
1686
1806
|
Object.defineProperty(SeriesViewerDescription.prototype, "refreshCompletedRef", {
|
|
1687
1807
|
get: function () {
|
|
1688
|
-
return this.
|
|
1808
|
+
return this.fd;
|
|
1689
1809
|
},
|
|
1690
1810
|
set: function (a) {
|
|
1691
|
-
this.
|
|
1811
|
+
this.fd = a;
|
|
1692
1812
|
this.g("RefreshCompletedRef");
|
|
1693
1813
|
},
|
|
1694
1814
|
enumerable: false,
|
|
@@ -1696,10 +1816,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1696
1816
|
});
|
|
1697
1817
|
Object.defineProperty(SeriesViewerDescription.prototype, "imageCapturedRef", {
|
|
1698
1818
|
get: function () {
|
|
1699
|
-
return this.
|
|
1819
|
+
return this.ew;
|
|
1700
1820
|
},
|
|
1701
1821
|
set: function (a) {
|
|
1702
|
-
this.
|
|
1822
|
+
this.ew = a;
|
|
1703
1823
|
this.g("ImageCapturedRef");
|
|
1704
1824
|
},
|
|
1705
1825
|
enumerable: false,
|
|
@@ -1707,10 +1827,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1707
1827
|
});
|
|
1708
1828
|
Object.defineProperty(SeriesViewerDescription.prototype, "background", {
|
|
1709
1829
|
get: function () {
|
|
1710
|
-
return this.
|
|
1830
|
+
return this.ee;
|
|
1711
1831
|
},
|
|
1712
1832
|
set: function (a) {
|
|
1713
|
-
this.
|
|
1833
|
+
this.ee = a;
|
|
1714
1834
|
this.g("Background");
|
|
1715
1835
|
},
|
|
1716
1836
|
enumerable: false,
|
|
@@ -1718,10 +1838,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1718
1838
|
});
|
|
1719
1839
|
Object.defineProperty(SeriesViewerDescription.prototype, "titleFontFamily", {
|
|
1720
1840
|
get: function () {
|
|
1721
|
-
return this.
|
|
1841
|
+
return this.f2;
|
|
1722
1842
|
},
|
|
1723
1843
|
set: function (a) {
|
|
1724
|
-
this.
|
|
1844
|
+
this.f2 = a;
|
|
1725
1845
|
this.g("TitleFontFamily");
|
|
1726
1846
|
},
|
|
1727
1847
|
enumerable: false,
|
|
@@ -1729,10 +1849,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1729
1849
|
});
|
|
1730
1850
|
Object.defineProperty(SeriesViewerDescription.prototype, "titleFontSize", {
|
|
1731
1851
|
get: function () {
|
|
1732
|
-
return this.
|
|
1852
|
+
return this.b1;
|
|
1733
1853
|
},
|
|
1734
1854
|
set: function (a) {
|
|
1735
|
-
this.
|
|
1855
|
+
this.b1 = a;
|
|
1736
1856
|
this.g("TitleFontSize");
|
|
1737
1857
|
},
|
|
1738
1858
|
enumerable: false,
|
|
@@ -1740,10 +1860,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1740
1860
|
});
|
|
1741
1861
|
Object.defineProperty(SeriesViewerDescription.prototype, "titleFontWeight", {
|
|
1742
1862
|
get: function () {
|
|
1743
|
-
return this.
|
|
1863
|
+
return this.f4;
|
|
1744
1864
|
},
|
|
1745
1865
|
set: function (a) {
|
|
1746
|
-
this.
|
|
1866
|
+
this.f4 = a;
|
|
1747
1867
|
this.g("TitleFontWeight");
|
|
1748
1868
|
},
|
|
1749
1869
|
enumerable: false,
|
|
@@ -1751,10 +1871,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1751
1871
|
});
|
|
1752
1872
|
Object.defineProperty(SeriesViewerDescription.prototype, "titleFontStyle", {
|
|
1753
1873
|
get: function () {
|
|
1754
|
-
return this.
|
|
1874
|
+
return this.f3;
|
|
1755
1875
|
},
|
|
1756
1876
|
set: function (a) {
|
|
1757
|
-
this.
|
|
1877
|
+
this.f3 = a;
|
|
1758
1878
|
this.g("TitleFontStyle");
|
|
1759
1879
|
},
|
|
1760
1880
|
enumerable: false,
|
|
@@ -1762,10 +1882,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1762
1882
|
});
|
|
1763
1883
|
Object.defineProperty(SeriesViewerDescription.prototype, "subtitleFontFamily", {
|
|
1764
1884
|
get: function () {
|
|
1765
|
-
return this.
|
|
1885
|
+
return this.fu;
|
|
1766
1886
|
},
|
|
1767
1887
|
set: function (a) {
|
|
1768
|
-
this.
|
|
1888
|
+
this.fu = a;
|
|
1769
1889
|
this.g("SubtitleFontFamily");
|
|
1770
1890
|
},
|
|
1771
1891
|
enumerable: false,
|
|
@@ -1773,10 +1893,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1773
1893
|
});
|
|
1774
1894
|
Object.defineProperty(SeriesViewerDescription.prototype, "subtitleFontSize", {
|
|
1775
1895
|
get: function () {
|
|
1776
|
-
return this.
|
|
1896
|
+
return this.bw;
|
|
1777
1897
|
},
|
|
1778
1898
|
set: function (a) {
|
|
1779
|
-
this.
|
|
1899
|
+
this.bw = a;
|
|
1780
1900
|
this.g("SubtitleFontSize");
|
|
1781
1901
|
},
|
|
1782
1902
|
enumerable: false,
|
|
@@ -1784,10 +1904,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1784
1904
|
});
|
|
1785
1905
|
Object.defineProperty(SeriesViewerDescription.prototype, "subtitleFontWeight", {
|
|
1786
1906
|
get: function () {
|
|
1787
|
-
return this.
|
|
1907
|
+
return this.fw;
|
|
1788
1908
|
},
|
|
1789
1909
|
set: function (a) {
|
|
1790
|
-
this.
|
|
1910
|
+
this.fw = a;
|
|
1791
1911
|
this.g("SubtitleFontWeight");
|
|
1792
1912
|
},
|
|
1793
1913
|
enumerable: false,
|
|
@@ -1795,10 +1915,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1795
1915
|
});
|
|
1796
1916
|
Object.defineProperty(SeriesViewerDescription.prototype, "subtitleFontStyle", {
|
|
1797
1917
|
get: function () {
|
|
1798
|
-
return this.
|
|
1918
|
+
return this.fv;
|
|
1799
1919
|
},
|
|
1800
1920
|
set: function (a) {
|
|
1801
|
-
this.
|
|
1921
|
+
this.fv = a;
|
|
1802
1922
|
this.g("SubtitleFontStyle");
|
|
1803
1923
|
},
|
|
1804
1924
|
enumerable: false,
|
|
@@ -1806,10 +1926,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1806
1926
|
});
|
|
1807
1927
|
Object.defineProperty(SeriesViewerDescription.prototype, "synchronizeHorizontally", {
|
|
1808
1928
|
get: function () {
|
|
1809
|
-
return this.
|
|
1929
|
+
return this.ar;
|
|
1810
1930
|
},
|
|
1811
1931
|
set: function (a) {
|
|
1812
|
-
this.
|
|
1932
|
+
this.ar = a;
|
|
1813
1933
|
this.g("SynchronizeHorizontally");
|
|
1814
1934
|
},
|
|
1815
1935
|
enumerable: false,
|
|
@@ -1817,10 +1937,10 @@ var SeriesViewerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1817
1937
|
});
|
|
1818
1938
|
Object.defineProperty(SeriesViewerDescription.prototype, "synchronizeVertically", {
|
|
1819
1939
|
get: function () {
|
|
1820
|
-
return this.
|
|
1940
|
+
return this.f1;
|
|
1821
1941
|
},
|
|
1822
1942
|
set: function (a) {
|
|
1823
|
-
this.
|
|
1943
|
+
this.f1 = a;
|
|
1824
1944
|
this.g("SynchronizeVertically");
|
|
1825
1945
|
},
|
|
1826
1946
|
enumerable: false,
|