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
|
@@ -15,152 +15,156 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
15
15
|
function DataLegendDescription() {
|
|
16
16
|
var _this = _super.call(this) || this;
|
|
17
17
|
_this.t = false;
|
|
18
|
-
_this.
|
|
18
|
+
_this.aj = 0;
|
|
19
|
+
_this.w = false;
|
|
19
20
|
_this.l = null;
|
|
20
21
|
_this.i = null;
|
|
21
22
|
_this.k = null;
|
|
22
23
|
_this.h = null;
|
|
23
|
-
_this.w = false;
|
|
24
|
-
_this.fp = null;
|
|
25
|
-
_this.dy = 0;
|
|
26
|
-
_this.dz = 0;
|
|
27
|
-
_this.fs = null;
|
|
28
|
-
_this.fq = null;
|
|
29
|
-
_this.fr = null;
|
|
30
24
|
_this.x = false;
|
|
31
|
-
_this.
|
|
25
|
+
_this.fv = null;
|
|
26
|
+
_this.d2 = 0;
|
|
27
|
+
_this.d3 = 0;
|
|
28
|
+
_this.fy = null;
|
|
29
|
+
_this.fw = null;
|
|
30
|
+
_this.fx = null;
|
|
31
|
+
_this.y = false;
|
|
32
|
+
_this.fz = null;
|
|
32
33
|
_this.m = null;
|
|
33
|
-
_this.by = 0;
|
|
34
|
-
_this.bz = 0;
|
|
35
|
-
_this.b0 = 0;
|
|
36
34
|
_this.b1 = 0;
|
|
37
|
-
_this.
|
|
38
|
-
_this.fy = null;
|
|
39
|
-
_this.z = false;
|
|
35
|
+
_this.b2 = 0;
|
|
40
36
|
_this.b3 = 0;
|
|
41
37
|
_this.b4 = 0;
|
|
42
|
-
_this.
|
|
38
|
+
_this.z = false;
|
|
39
|
+
_this.f4 = null;
|
|
40
|
+
_this.aa = false;
|
|
43
41
|
_this.b6 = 0;
|
|
44
|
-
_this.
|
|
45
|
-
_this.
|
|
46
|
-
_this.
|
|
47
|
-
_this.
|
|
48
|
-
_this.
|
|
49
|
-
_this.
|
|
42
|
+
_this.b7 = 0;
|
|
43
|
+
_this.b8 = 0;
|
|
44
|
+
_this.b9 = 0;
|
|
45
|
+
_this.f0 = null;
|
|
46
|
+
_this.f1 = null;
|
|
47
|
+
_this.b5 = 0;
|
|
48
|
+
_this.f2 = null;
|
|
49
|
+
_this.f3 = null;
|
|
50
|
+
_this.eg = null;
|
|
50
51
|
_this.j = null;
|
|
51
|
-
_this.
|
|
52
|
-
_this.
|
|
53
|
-
_this.
|
|
54
|
-
_this.
|
|
55
|
-
_this.
|
|
52
|
+
_this.ee = null;
|
|
53
|
+
_this.ef = null;
|
|
54
|
+
_this.eh = null;
|
|
55
|
+
_this.ei = null;
|
|
56
|
+
_this.ej = null;
|
|
57
|
+
_this.a3 = 0;
|
|
58
|
+
_this.a4 = 0;
|
|
59
|
+
_this.a5 = 0;
|
|
60
|
+
_this.a6 = 0;
|
|
61
|
+
_this.ay = 0;
|
|
62
|
+
_this.az = 0;
|
|
56
63
|
_this.a0 = 0;
|
|
57
64
|
_this.a1 = 0;
|
|
65
|
+
_this.v = false;
|
|
66
|
+
_this.ek = null;
|
|
58
67
|
_this.a2 = 0;
|
|
59
|
-
_this.
|
|
68
|
+
_this.el = null;
|
|
69
|
+
_this.em = null;
|
|
70
|
+
_this.u = false;
|
|
71
|
+
_this.ea = null;
|
|
72
|
+
_this.au = 0;
|
|
60
73
|
_this.av = 0;
|
|
61
74
|
_this.aw = 0;
|
|
62
75
|
_this.ax = 0;
|
|
63
|
-
_this.
|
|
64
|
-
_this.
|
|
65
|
-
_this.ee = null;
|
|
66
|
-
_this.az = 0;
|
|
67
|
-
_this.ef = null;
|
|
68
|
-
_this.eg = null;
|
|
69
|
-
_this.u = false;
|
|
70
|
-
_this.d4 = null;
|
|
76
|
+
_this.ap = 0;
|
|
77
|
+
_this.aq = 0;
|
|
71
78
|
_this.ar = 0;
|
|
72
79
|
_this.as = 0;
|
|
80
|
+
_this.eb = null;
|
|
73
81
|
_this.at = 0;
|
|
74
|
-
_this.
|
|
75
|
-
_this.
|
|
76
|
-
_this.
|
|
77
|
-
_this.
|
|
78
|
-
_this.
|
|
79
|
-
_this.
|
|
80
|
-
_this.
|
|
81
|
-
_this.
|
|
82
|
-
_this.
|
|
82
|
+
_this.ec = null;
|
|
83
|
+
_this.ed = null;
|
|
84
|
+
_this.e6 = null;
|
|
85
|
+
_this.e7 = null;
|
|
86
|
+
_this.bi = 0;
|
|
87
|
+
_this.e8 = null;
|
|
88
|
+
_this.e9 = null;
|
|
89
|
+
_this.fa = null;
|
|
90
|
+
_this.e5 = null;
|
|
91
|
+
_this.bj = 0;
|
|
92
|
+
_this.bk = 0;
|
|
93
|
+
_this.bl = 0;
|
|
94
|
+
_this.bm = 0;
|
|
95
|
+
_this.be = 0;
|
|
96
|
+
_this.bf = 0;
|
|
97
|
+
_this.bg = 0;
|
|
98
|
+
_this.bh = 0;
|
|
99
|
+
_this.fg = null;
|
|
100
|
+
_this.fh = null;
|
|
101
|
+
_this.bo = 0;
|
|
102
|
+
_this.fi = null;
|
|
103
|
+
_this.fj = null;
|
|
83
104
|
_this.e0 = null;
|
|
84
105
|
_this.e1 = null;
|
|
85
|
-
_this.bf = 0;
|
|
86
106
|
_this.e2 = null;
|
|
107
|
+
_this.bd = 0;
|
|
87
108
|
_this.e3 = null;
|
|
88
109
|
_this.e4 = null;
|
|
89
|
-
_this.ez = null;
|
|
90
|
-
_this.bg = 0;
|
|
91
|
-
_this.bh = 0;
|
|
92
|
-
_this.bi = 0;
|
|
93
|
-
_this.bj = 0;
|
|
94
|
-
_this.bb = 0;
|
|
95
|
-
_this.bc = 0;
|
|
96
|
-
_this.bd = 0;
|
|
97
|
-
_this.be = 0;
|
|
98
|
-
_this.fa = null;
|
|
99
110
|
_this.fb = null;
|
|
100
|
-
_this.bl = 0;
|
|
101
111
|
_this.fc = null;
|
|
102
112
|
_this.fd = null;
|
|
103
|
-
_this.eu = null;
|
|
104
|
-
_this.ev = null;
|
|
105
|
-
_this.ew = null;
|
|
106
|
-
_this.ba = 0;
|
|
107
|
-
_this.ex = null;
|
|
108
|
-
_this.ey = null;
|
|
109
|
-
_this.e5 = null;
|
|
110
|
-
_this.e6 = null;
|
|
111
|
-
_this.e7 = null;
|
|
112
|
-
_this.bk = 0;
|
|
113
|
-
_this.e8 = null;
|
|
114
|
-
_this.e9 = null;
|
|
115
|
-
_this.ai = 0;
|
|
116
|
-
_this.aj = 0;
|
|
117
|
-
_this.ak = 0;
|
|
118
|
-
_this.al = 0;
|
|
119
|
-
_this.d2 = null;
|
|
120
|
-
_this.bm = 0;
|
|
121
113
|
_this.bn = 0;
|
|
122
114
|
_this.fe = null;
|
|
123
|
-
_this.
|
|
115
|
+
_this.ff = null;
|
|
116
|
+
_this.ak = 0;
|
|
117
|
+
_this.al = 0;
|
|
118
|
+
_this.am = 0;
|
|
119
|
+
_this.an = 0;
|
|
120
|
+
_this.d6 = null;
|
|
121
|
+
_this.bp = 0;
|
|
122
|
+
_this.bq = 0;
|
|
124
123
|
_this.fk = null;
|
|
125
|
-
_this.
|
|
124
|
+
_this.fp = null;
|
|
125
|
+
_this.fq = null;
|
|
126
|
+
_this.fr = null;
|
|
127
|
+
_this.bx = 0;
|
|
128
|
+
_this.by = 0;
|
|
129
|
+
_this.bz = 0;
|
|
130
|
+
_this.b0 = 0;
|
|
131
|
+
_this.fs = null;
|
|
132
|
+
_this.bw = 0;
|
|
133
|
+
_this.ft = null;
|
|
134
|
+
_this.fu = null;
|
|
135
|
+
_this.bs = 0;
|
|
136
|
+
_this.bt = 0;
|
|
126
137
|
_this.bu = 0;
|
|
127
138
|
_this.bv = 0;
|
|
128
|
-
_this.
|
|
129
|
-
_this.bx = 0;
|
|
139
|
+
_this.fl = null;
|
|
130
140
|
_this.fm = null;
|
|
131
|
-
_this.
|
|
141
|
+
_this.br = 0;
|
|
132
142
|
_this.fn = null;
|
|
133
143
|
_this.fo = null;
|
|
134
|
-
_this.
|
|
135
|
-
_this.
|
|
136
|
-
_this.br = 0;
|
|
137
|
-
_this.bs = 0;
|
|
138
|
-
_this.ff = null;
|
|
139
|
-
_this.fg = null;
|
|
140
|
-
_this.bo = 0;
|
|
141
|
-
_this.fh = null;
|
|
142
|
-
_this.fi = null;
|
|
143
|
-
_this.ei = null;
|
|
144
|
-
_this.ej = null;
|
|
145
|
-
_this.a5 = 0;
|
|
146
|
-
_this.a6 = 0;
|
|
147
|
-
_this.a7 = 0;
|
|
144
|
+
_this.eo = null;
|
|
145
|
+
_this.ep = null;
|
|
148
146
|
_this.a8 = 0;
|
|
149
|
-
_this.ek = null;
|
|
150
|
-
_this.a4 = 0;
|
|
151
|
-
_this.el = null;
|
|
152
|
-
_this.em = null;
|
|
153
147
|
_this.a9 = 0;
|
|
154
|
-
_this.
|
|
155
|
-
_this.
|
|
156
|
-
_this.ep = null;
|
|
157
|
-
_this.eo = null;
|
|
158
|
-
_this.er = null;
|
|
159
|
-
_this.et = null;
|
|
148
|
+
_this.ba = 0;
|
|
149
|
+
_this.bb = 0;
|
|
160
150
|
_this.eq = null;
|
|
151
|
+
_this.a7 = 0;
|
|
152
|
+
_this.er = null;
|
|
161
153
|
_this.es = null;
|
|
162
|
-
_this.
|
|
163
|
-
_this.
|
|
154
|
+
_this.bc = 0;
|
|
155
|
+
_this.et = null;
|
|
156
|
+
_this.d8 = null;
|
|
157
|
+
_this.d9 = null;
|
|
158
|
+
_this.ao = 0;
|
|
159
|
+
_this.d7 = null;
|
|
160
|
+
_this.ev = null;
|
|
161
|
+
_this.eu = null;
|
|
162
|
+
_this.ex = null;
|
|
163
|
+
_this.ez = null;
|
|
164
|
+
_this.ew = null;
|
|
165
|
+
_this.ey = null;
|
|
166
|
+
_this.f5 = null;
|
|
167
|
+
_this.en = null;
|
|
164
168
|
return _this;
|
|
165
169
|
}
|
|
166
170
|
DataLegendDescription.prototype.get_type = function () {
|
|
@@ -186,15 +190,26 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
186
190
|
});
|
|
187
191
|
Object.defineProperty(DataLegendDescription.prototype, "actualPixelScalingRatio", {
|
|
188
192
|
get: function () {
|
|
189
|
-
return this.
|
|
193
|
+
return this.aj;
|
|
190
194
|
},
|
|
191
195
|
set: function (a) {
|
|
192
|
-
this.
|
|
196
|
+
this.aj = a;
|
|
193
197
|
this.g("ActualPixelScalingRatio");
|
|
194
198
|
},
|
|
195
199
|
enumerable: false,
|
|
196
200
|
configurable: true
|
|
197
201
|
});
|
|
202
|
+
Object.defineProperty(DataLegendDescription.prototype, "isEmbeddedInDataTooltip", {
|
|
203
|
+
get: function () {
|
|
204
|
+
return this.w;
|
|
205
|
+
},
|
|
206
|
+
set: function (a) {
|
|
207
|
+
this.w = a;
|
|
208
|
+
this.g("IsEmbeddedInDataTooltip");
|
|
209
|
+
},
|
|
210
|
+
enumerable: false,
|
|
211
|
+
configurable: true
|
|
212
|
+
});
|
|
198
213
|
Object.defineProperty(DataLegendDescription.prototype, "includedSeries", {
|
|
199
214
|
get: function () {
|
|
200
215
|
return this.l;
|
|
@@ -241,10 +256,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
241
256
|
});
|
|
242
257
|
Object.defineProperty(DataLegendDescription.prototype, "shouldUpdateWhenSeriesDataChanges", {
|
|
243
258
|
get: function () {
|
|
244
|
-
return this.
|
|
259
|
+
return this.x;
|
|
245
260
|
},
|
|
246
261
|
set: function (a) {
|
|
247
|
-
this.
|
|
262
|
+
this.x = a;
|
|
248
263
|
this.g("ShouldUpdateWhenSeriesDataChanges");
|
|
249
264
|
},
|
|
250
265
|
enumerable: false,
|
|
@@ -252,10 +267,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
252
267
|
});
|
|
253
268
|
Object.defineProperty(DataLegendDescription.prototype, "valueFormatAbbreviation", {
|
|
254
269
|
get: function () {
|
|
255
|
-
return this.
|
|
270
|
+
return this.fv;
|
|
256
271
|
},
|
|
257
272
|
set: function (a) {
|
|
258
|
-
this.
|
|
273
|
+
this.fv = a;
|
|
259
274
|
this.g("ValueFormatAbbreviation");
|
|
260
275
|
},
|
|
261
276
|
enumerable: false,
|
|
@@ -263,10 +278,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
263
278
|
});
|
|
264
279
|
Object.defineProperty(DataLegendDescription.prototype, "valueFormatMaxFractions", {
|
|
265
280
|
get: function () {
|
|
266
|
-
return this.
|
|
281
|
+
return this.d2;
|
|
267
282
|
},
|
|
268
283
|
set: function (a) {
|
|
269
|
-
this.
|
|
284
|
+
this.d2 = a;
|
|
270
285
|
this.g("ValueFormatMaxFractions");
|
|
271
286
|
},
|
|
272
287
|
enumerable: false,
|
|
@@ -274,10 +289,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
274
289
|
});
|
|
275
290
|
Object.defineProperty(DataLegendDescription.prototype, "valueFormatMinFractions", {
|
|
276
291
|
get: function () {
|
|
277
|
-
return this.
|
|
292
|
+
return this.d3;
|
|
278
293
|
},
|
|
279
294
|
set: function (a) {
|
|
280
|
-
this.
|
|
295
|
+
this.d3 = a;
|
|
281
296
|
this.g("ValueFormatMinFractions");
|
|
282
297
|
},
|
|
283
298
|
enumerable: false,
|
|
@@ -285,10 +300,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
285
300
|
});
|
|
286
301
|
Object.defineProperty(DataLegendDescription.prototype, "valueFormatMode", {
|
|
287
302
|
get: function () {
|
|
288
|
-
return this.
|
|
303
|
+
return this.fy;
|
|
289
304
|
},
|
|
290
305
|
set: function (a) {
|
|
291
|
-
this.
|
|
306
|
+
this.fy = a;
|
|
292
307
|
this.g("ValueFormatMode");
|
|
293
308
|
},
|
|
294
309
|
enumerable: false,
|
|
@@ -296,10 +311,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
296
311
|
});
|
|
297
312
|
Object.defineProperty(DataLegendDescription.prototype, "valueFormatCulture", {
|
|
298
313
|
get: function () {
|
|
299
|
-
return this.
|
|
314
|
+
return this.fw;
|
|
300
315
|
},
|
|
301
316
|
set: function (a) {
|
|
302
|
-
this.
|
|
317
|
+
this.fw = a;
|
|
303
318
|
this.g("ValueFormatCulture");
|
|
304
319
|
},
|
|
305
320
|
enumerable: false,
|
|
@@ -307,10 +322,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
307
322
|
});
|
|
308
323
|
Object.defineProperty(DataLegendDescription.prototype, "valueFormatCurrencyCode", {
|
|
309
324
|
get: function () {
|
|
310
|
-
return this.
|
|
325
|
+
return this.fx;
|
|
311
326
|
},
|
|
312
327
|
set: function (a) {
|
|
313
|
-
this.
|
|
328
|
+
this.fx = a;
|
|
314
329
|
this.g("ValueFormatCurrencyCode");
|
|
315
330
|
},
|
|
316
331
|
enumerable: false,
|
|
@@ -318,10 +333,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
318
333
|
});
|
|
319
334
|
Object.defineProperty(DataLegendDescription.prototype, "valueFormatUseGrouping", {
|
|
320
335
|
get: function () {
|
|
321
|
-
return this.
|
|
336
|
+
return this.y;
|
|
322
337
|
},
|
|
323
338
|
set: function (a) {
|
|
324
|
-
this.
|
|
339
|
+
this.y = a;
|
|
325
340
|
this.g("ValueFormatUseGrouping");
|
|
326
341
|
},
|
|
327
342
|
enumerable: false,
|
|
@@ -329,10 +344,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
329
344
|
});
|
|
330
345
|
Object.defineProperty(DataLegendDescription.prototype, "valueFormatString", {
|
|
331
346
|
get: function () {
|
|
332
|
-
return this.
|
|
347
|
+
return this.fz;
|
|
333
348
|
},
|
|
334
349
|
set: function (a) {
|
|
335
|
-
this.
|
|
350
|
+
this.fz = a;
|
|
336
351
|
this.g("ValueFormatString");
|
|
337
352
|
},
|
|
338
353
|
enumerable: false,
|
|
@@ -351,10 +366,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
351
366
|
});
|
|
352
367
|
Object.defineProperty(DataLegendDescription.prototype, "valueRowMarginBottom", {
|
|
353
368
|
get: function () {
|
|
354
|
-
return this.
|
|
369
|
+
return this.b1;
|
|
355
370
|
},
|
|
356
371
|
set: function (a) {
|
|
357
|
-
this.
|
|
372
|
+
this.b1 = a;
|
|
358
373
|
this.g("ValueRowMarginBottom");
|
|
359
374
|
},
|
|
360
375
|
enumerable: false,
|
|
@@ -362,10 +377,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
362
377
|
});
|
|
363
378
|
Object.defineProperty(DataLegendDescription.prototype, "valueRowMarginLeft", {
|
|
364
379
|
get: function () {
|
|
365
|
-
return this.
|
|
380
|
+
return this.b2;
|
|
366
381
|
},
|
|
367
382
|
set: function (a) {
|
|
368
|
-
this.
|
|
383
|
+
this.b2 = a;
|
|
369
384
|
this.g("ValueRowMarginLeft");
|
|
370
385
|
},
|
|
371
386
|
enumerable: false,
|
|
@@ -373,10 +388,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
373
388
|
});
|
|
374
389
|
Object.defineProperty(DataLegendDescription.prototype, "valueRowMarginRight", {
|
|
375
390
|
get: function () {
|
|
376
|
-
return this.
|
|
391
|
+
return this.b3;
|
|
377
392
|
},
|
|
378
393
|
set: function (a) {
|
|
379
|
-
this.
|
|
394
|
+
this.b3 = a;
|
|
380
395
|
this.g("ValueRowMarginRight");
|
|
381
396
|
},
|
|
382
397
|
enumerable: false,
|
|
@@ -384,10 +399,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
384
399
|
});
|
|
385
400
|
Object.defineProperty(DataLegendDescription.prototype, "valueRowMarginTop", {
|
|
386
401
|
get: function () {
|
|
387
|
-
return this.
|
|
402
|
+
return this.b4;
|
|
388
403
|
},
|
|
389
404
|
set: function (a) {
|
|
390
|
-
this.
|
|
405
|
+
this.b4 = a;
|
|
391
406
|
this.g("ValueRowMarginTop");
|
|
392
407
|
},
|
|
393
408
|
enumerable: false,
|
|
@@ -395,10 +410,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
395
410
|
});
|
|
396
411
|
Object.defineProperty(DataLegendDescription.prototype, "valueRowVisible", {
|
|
397
412
|
get: function () {
|
|
398
|
-
return this.
|
|
413
|
+
return this.z;
|
|
399
414
|
},
|
|
400
415
|
set: function (a) {
|
|
401
|
-
this.
|
|
416
|
+
this.z = a;
|
|
402
417
|
this.g("ValueRowVisible");
|
|
403
418
|
},
|
|
404
419
|
enumerable: false,
|
|
@@ -406,10 +421,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
406
421
|
});
|
|
407
422
|
Object.defineProperty(DataLegendDescription.prototype, "valueTextWhenMissingData", {
|
|
408
423
|
get: function () {
|
|
409
|
-
return this.
|
|
424
|
+
return this.f4;
|
|
410
425
|
},
|
|
411
426
|
set: function (a) {
|
|
412
|
-
this.
|
|
427
|
+
this.f4 = a;
|
|
413
428
|
this.g("ValueTextWhenMissingData");
|
|
414
429
|
},
|
|
415
430
|
enumerable: false,
|
|
@@ -417,10 +432,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
417
432
|
});
|
|
418
433
|
Object.defineProperty(DataLegendDescription.prototype, "valueTextUseSeriesColors", {
|
|
419
434
|
get: function () {
|
|
420
|
-
return this.
|
|
435
|
+
return this.aa;
|
|
421
436
|
},
|
|
422
437
|
set: function (a) {
|
|
423
|
-
this.
|
|
438
|
+
this.aa = a;
|
|
424
439
|
this.g("ValueTextUseSeriesColors");
|
|
425
440
|
},
|
|
426
441
|
enumerable: false,
|
|
@@ -428,10 +443,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
428
443
|
});
|
|
429
444
|
Object.defineProperty(DataLegendDescription.prototype, "valueTextMarginBottom", {
|
|
430
445
|
get: function () {
|
|
431
|
-
return this.
|
|
446
|
+
return this.b6;
|
|
432
447
|
},
|
|
433
448
|
set: function (a) {
|
|
434
|
-
this.
|
|
449
|
+
this.b6 = a;
|
|
435
450
|
this.g("ValueTextMarginBottom");
|
|
436
451
|
},
|
|
437
452
|
enumerable: false,
|
|
@@ -439,10 +454,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
439
454
|
});
|
|
440
455
|
Object.defineProperty(DataLegendDescription.prototype, "valueTextMarginLeft", {
|
|
441
456
|
get: function () {
|
|
442
|
-
return this.
|
|
457
|
+
return this.b7;
|
|
443
458
|
},
|
|
444
459
|
set: function (a) {
|
|
445
|
-
this.
|
|
460
|
+
this.b7 = a;
|
|
446
461
|
this.g("ValueTextMarginLeft");
|
|
447
462
|
},
|
|
448
463
|
enumerable: false,
|
|
@@ -450,10 +465,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
450
465
|
});
|
|
451
466
|
Object.defineProperty(DataLegendDescription.prototype, "valueTextMarginRight", {
|
|
452
467
|
get: function () {
|
|
453
|
-
return this.
|
|
468
|
+
return this.b8;
|
|
454
469
|
},
|
|
455
470
|
set: function (a) {
|
|
456
|
-
this.
|
|
471
|
+
this.b8 = a;
|
|
457
472
|
this.g("ValueTextMarginRight");
|
|
458
473
|
},
|
|
459
474
|
enumerable: false,
|
|
@@ -461,10 +476,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
461
476
|
});
|
|
462
477
|
Object.defineProperty(DataLegendDescription.prototype, "valueTextMarginTop", {
|
|
463
478
|
get: function () {
|
|
464
|
-
return this.
|
|
479
|
+
return this.b9;
|
|
465
480
|
},
|
|
466
481
|
set: function (a) {
|
|
467
|
-
this.
|
|
482
|
+
this.b9 = a;
|
|
468
483
|
this.g("ValueTextMarginTop");
|
|
469
484
|
},
|
|
470
485
|
enumerable: false,
|
|
@@ -472,10 +487,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
472
487
|
});
|
|
473
488
|
Object.defineProperty(DataLegendDescription.prototype, "valueTextColor", {
|
|
474
489
|
get: function () {
|
|
475
|
-
return this.
|
|
490
|
+
return this.f0;
|
|
476
491
|
},
|
|
477
492
|
set: function (a) {
|
|
478
|
-
this.
|
|
493
|
+
this.f0 = a;
|
|
479
494
|
this.g("ValueTextColor");
|
|
480
495
|
},
|
|
481
496
|
enumerable: false,
|
|
@@ -483,10 +498,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
483
498
|
});
|
|
484
499
|
Object.defineProperty(DataLegendDescription.prototype, "valueTextFontFamily", {
|
|
485
500
|
get: function () {
|
|
486
|
-
return this.
|
|
501
|
+
return this.f1;
|
|
487
502
|
},
|
|
488
503
|
set: function (a) {
|
|
489
|
-
this.
|
|
504
|
+
this.f1 = a;
|
|
490
505
|
this.g("ValueTextFontFamily");
|
|
491
506
|
},
|
|
492
507
|
enumerable: false,
|
|
@@ -494,10 +509,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
494
509
|
});
|
|
495
510
|
Object.defineProperty(DataLegendDescription.prototype, "valueTextFontSize", {
|
|
496
511
|
get: function () {
|
|
497
|
-
return this.
|
|
512
|
+
return this.b5;
|
|
498
513
|
},
|
|
499
514
|
set: function (a) {
|
|
500
|
-
this.
|
|
515
|
+
this.b5 = a;
|
|
501
516
|
this.g("ValueTextFontSize");
|
|
502
517
|
},
|
|
503
518
|
enumerable: false,
|
|
@@ -505,10 +520,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
505
520
|
});
|
|
506
521
|
Object.defineProperty(DataLegendDescription.prototype, "valueTextFontStyle", {
|
|
507
522
|
get: function () {
|
|
508
|
-
return this.
|
|
523
|
+
return this.f2;
|
|
509
524
|
},
|
|
510
525
|
set: function (a) {
|
|
511
|
-
this.
|
|
526
|
+
this.f2 = a;
|
|
512
527
|
this.g("ValueTextFontStyle");
|
|
513
528
|
},
|
|
514
529
|
enumerable: false,
|
|
@@ -516,10 +531,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
516
531
|
});
|
|
517
532
|
Object.defineProperty(DataLegendDescription.prototype, "valueTextFontWeight", {
|
|
518
533
|
get: function () {
|
|
519
|
-
return this.
|
|
534
|
+
return this.f3;
|
|
520
535
|
},
|
|
521
536
|
set: function (a) {
|
|
522
|
-
this.
|
|
537
|
+
this.f3 = a;
|
|
523
538
|
this.g("ValueTextFontWeight");
|
|
524
539
|
},
|
|
525
540
|
enumerable: false,
|
|
@@ -527,10 +542,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
527
542
|
});
|
|
528
543
|
Object.defineProperty(DataLegendDescription.prototype, "headerFormatString", {
|
|
529
544
|
get: function () {
|
|
530
|
-
return this.
|
|
545
|
+
return this.eg;
|
|
531
546
|
},
|
|
532
547
|
set: function (a) {
|
|
533
|
-
this.
|
|
548
|
+
this.eg = a;
|
|
534
549
|
this.g("HeaderFormatString");
|
|
535
550
|
},
|
|
536
551
|
enumerable: false,
|
|
@@ -549,10 +564,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
549
564
|
});
|
|
550
565
|
Object.defineProperty(DataLegendDescription.prototype, "headerFormatCulture", {
|
|
551
566
|
get: function () {
|
|
552
|
-
return this.
|
|
567
|
+
return this.ee;
|
|
553
568
|
},
|
|
554
569
|
set: function (a) {
|
|
555
|
-
this.
|
|
570
|
+
this.ee = a;
|
|
556
571
|
this.g("HeaderFormatCulture");
|
|
557
572
|
},
|
|
558
573
|
enumerable: false,
|
|
@@ -560,10 +575,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
560
575
|
});
|
|
561
576
|
Object.defineProperty(DataLegendDescription.prototype, "headerFormatDate", {
|
|
562
577
|
get: function () {
|
|
563
|
-
return this.
|
|
578
|
+
return this.ef;
|
|
564
579
|
},
|
|
565
580
|
set: function (a) {
|
|
566
|
-
this.
|
|
581
|
+
this.ef = a;
|
|
567
582
|
this.g("HeaderFormatDate");
|
|
568
583
|
},
|
|
569
584
|
enumerable: false,
|
|
@@ -571,10 +586,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
571
586
|
});
|
|
572
587
|
Object.defineProperty(DataLegendDescription.prototype, "headerFormatTime", {
|
|
573
588
|
get: function () {
|
|
574
|
-
return this.
|
|
589
|
+
return this.eh;
|
|
575
590
|
},
|
|
576
591
|
set: function (a) {
|
|
577
|
-
this.
|
|
592
|
+
this.eh = a;
|
|
578
593
|
this.g("HeaderFormatTime");
|
|
579
594
|
},
|
|
580
595
|
enumerable: false,
|
|
@@ -582,10 +597,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
582
597
|
});
|
|
583
598
|
Object.defineProperty(DataLegendDescription.prototype, "headerText", {
|
|
584
599
|
get: function () {
|
|
585
|
-
return this.
|
|
600
|
+
return this.ei;
|
|
586
601
|
},
|
|
587
602
|
set: function (a) {
|
|
588
|
-
this.
|
|
603
|
+
this.ei = a;
|
|
589
604
|
this.g("HeaderText");
|
|
590
605
|
},
|
|
591
606
|
enumerable: false,
|
|
@@ -593,10 +608,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
593
608
|
});
|
|
594
609
|
Object.defineProperty(DataLegendDescription.prototype, "headerTextColor", {
|
|
595
610
|
get: function () {
|
|
596
|
-
return this.
|
|
611
|
+
return this.ej;
|
|
597
612
|
},
|
|
598
613
|
set: function (a) {
|
|
599
|
-
this.
|
|
614
|
+
this.ej = a;
|
|
600
615
|
this.g("HeaderTextColor");
|
|
601
616
|
},
|
|
602
617
|
enumerable: false,
|
|
@@ -604,10 +619,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
604
619
|
});
|
|
605
620
|
Object.defineProperty(DataLegendDescription.prototype, "headerTextMarginBottom", {
|
|
606
621
|
get: function () {
|
|
607
|
-
return this.
|
|
622
|
+
return this.a3;
|
|
608
623
|
},
|
|
609
624
|
set: function (a) {
|
|
610
|
-
this.
|
|
625
|
+
this.a3 = a;
|
|
611
626
|
this.g("HeaderTextMarginBottom");
|
|
612
627
|
},
|
|
613
628
|
enumerable: false,
|
|
@@ -615,10 +630,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
615
630
|
});
|
|
616
631
|
Object.defineProperty(DataLegendDescription.prototype, "headerTextMarginLeft", {
|
|
617
632
|
get: function () {
|
|
618
|
-
return this.
|
|
633
|
+
return this.a4;
|
|
619
634
|
},
|
|
620
635
|
set: function (a) {
|
|
621
|
-
this.
|
|
636
|
+
this.a4 = a;
|
|
622
637
|
this.g("HeaderTextMarginLeft");
|
|
623
638
|
},
|
|
624
639
|
enumerable: false,
|
|
@@ -626,10 +641,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
626
641
|
});
|
|
627
642
|
Object.defineProperty(DataLegendDescription.prototype, "headerTextMarginRight", {
|
|
628
643
|
get: function () {
|
|
629
|
-
return this.
|
|
644
|
+
return this.a5;
|
|
630
645
|
},
|
|
631
646
|
set: function (a) {
|
|
632
|
-
this.
|
|
647
|
+
this.a5 = a;
|
|
633
648
|
this.g("HeaderTextMarginRight");
|
|
634
649
|
},
|
|
635
650
|
enumerable: false,
|
|
@@ -637,10 +652,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
637
652
|
});
|
|
638
653
|
Object.defineProperty(DataLegendDescription.prototype, "headerTextMarginTop", {
|
|
639
654
|
get: function () {
|
|
640
|
-
return this.
|
|
655
|
+
return this.a6;
|
|
641
656
|
},
|
|
642
657
|
set: function (a) {
|
|
643
|
-
this.
|
|
658
|
+
this.a6 = a;
|
|
644
659
|
this.g("HeaderTextMarginTop");
|
|
645
660
|
},
|
|
646
661
|
enumerable: false,
|
|
@@ -648,10 +663,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
648
663
|
});
|
|
649
664
|
Object.defineProperty(DataLegendDescription.prototype, "headerRowMarginBottom", {
|
|
650
665
|
get: function () {
|
|
651
|
-
return this.
|
|
666
|
+
return this.ay;
|
|
652
667
|
},
|
|
653
668
|
set: function (a) {
|
|
654
|
-
this.
|
|
669
|
+
this.ay = a;
|
|
655
670
|
this.g("HeaderRowMarginBottom");
|
|
656
671
|
},
|
|
657
672
|
enumerable: false,
|
|
@@ -659,10 +674,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
659
674
|
});
|
|
660
675
|
Object.defineProperty(DataLegendDescription.prototype, "headerRowMarginLeft", {
|
|
661
676
|
get: function () {
|
|
662
|
-
return this.
|
|
677
|
+
return this.az;
|
|
663
678
|
},
|
|
664
679
|
set: function (a) {
|
|
665
|
-
this.
|
|
680
|
+
this.az = a;
|
|
666
681
|
this.g("HeaderRowMarginLeft");
|
|
667
682
|
},
|
|
668
683
|
enumerable: false,
|
|
@@ -670,10 +685,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
670
685
|
});
|
|
671
686
|
Object.defineProperty(DataLegendDescription.prototype, "headerRowMarginRight", {
|
|
672
687
|
get: function () {
|
|
673
|
-
return this.
|
|
688
|
+
return this.a0;
|
|
674
689
|
},
|
|
675
690
|
set: function (a) {
|
|
676
|
-
this.
|
|
691
|
+
this.a0 = a;
|
|
677
692
|
this.g("HeaderRowMarginRight");
|
|
678
693
|
},
|
|
679
694
|
enumerable: false,
|
|
@@ -681,10 +696,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
681
696
|
});
|
|
682
697
|
Object.defineProperty(DataLegendDescription.prototype, "headerRowMarginTop", {
|
|
683
698
|
get: function () {
|
|
684
|
-
return this.
|
|
699
|
+
return this.a1;
|
|
685
700
|
},
|
|
686
701
|
set: function (a) {
|
|
687
|
-
this.
|
|
702
|
+
this.a1 = a;
|
|
688
703
|
this.g("HeaderRowMarginTop");
|
|
689
704
|
},
|
|
690
705
|
enumerable: false,
|
|
@@ -703,10 +718,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
703
718
|
});
|
|
704
719
|
Object.defineProperty(DataLegendDescription.prototype, "headerTextFontFamily", {
|
|
705
720
|
get: function () {
|
|
706
|
-
return this.
|
|
721
|
+
return this.ek;
|
|
707
722
|
},
|
|
708
723
|
set: function (a) {
|
|
709
|
-
this.
|
|
724
|
+
this.ek = a;
|
|
710
725
|
this.g("HeaderTextFontFamily");
|
|
711
726
|
},
|
|
712
727
|
enumerable: false,
|
|
@@ -714,10 +729,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
714
729
|
});
|
|
715
730
|
Object.defineProperty(DataLegendDescription.prototype, "headerTextFontSize", {
|
|
716
731
|
get: function () {
|
|
717
|
-
return this.
|
|
732
|
+
return this.a2;
|
|
718
733
|
},
|
|
719
734
|
set: function (a) {
|
|
720
|
-
this.
|
|
735
|
+
this.a2 = a;
|
|
721
736
|
this.g("HeaderTextFontSize");
|
|
722
737
|
},
|
|
723
738
|
enumerable: false,
|
|
@@ -725,10 +740,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
725
740
|
});
|
|
726
741
|
Object.defineProperty(DataLegendDescription.prototype, "headerTextFontStyle", {
|
|
727
742
|
get: function () {
|
|
728
|
-
return this.
|
|
743
|
+
return this.el;
|
|
729
744
|
},
|
|
730
745
|
set: function (a) {
|
|
731
|
-
this.
|
|
746
|
+
this.el = a;
|
|
732
747
|
this.g("HeaderTextFontStyle");
|
|
733
748
|
},
|
|
734
749
|
enumerable: false,
|
|
@@ -736,10 +751,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
736
751
|
});
|
|
737
752
|
Object.defineProperty(DataLegendDescription.prototype, "headerTextFontWeight", {
|
|
738
753
|
get: function () {
|
|
739
|
-
return this.
|
|
754
|
+
return this.em;
|
|
740
755
|
},
|
|
741
756
|
set: function (a) {
|
|
742
|
-
this.
|
|
757
|
+
this.em = a;
|
|
743
758
|
this.g("HeaderTextFontWeight");
|
|
744
759
|
},
|
|
745
760
|
enumerable: false,
|
|
@@ -758,10 +773,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
758
773
|
});
|
|
759
774
|
Object.defineProperty(DataLegendDescription.prototype, "groupTextColor", {
|
|
760
775
|
get: function () {
|
|
761
|
-
return this.
|
|
776
|
+
return this.ea;
|
|
762
777
|
},
|
|
763
778
|
set: function (a) {
|
|
764
|
-
this.
|
|
779
|
+
this.ea = a;
|
|
765
780
|
this.g("GroupTextColor");
|
|
766
781
|
},
|
|
767
782
|
enumerable: false,
|
|
@@ -769,10 +784,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
769
784
|
});
|
|
770
785
|
Object.defineProperty(DataLegendDescription.prototype, "groupTextMarginBottom", {
|
|
771
786
|
get: function () {
|
|
772
|
-
return this.
|
|
787
|
+
return this.au;
|
|
773
788
|
},
|
|
774
789
|
set: function (a) {
|
|
775
|
-
this.
|
|
790
|
+
this.au = a;
|
|
776
791
|
this.g("GroupTextMarginBottom");
|
|
777
792
|
},
|
|
778
793
|
enumerable: false,
|
|
@@ -780,10 +795,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
780
795
|
});
|
|
781
796
|
Object.defineProperty(DataLegendDescription.prototype, "groupTextMarginLeft", {
|
|
782
797
|
get: function () {
|
|
783
|
-
return this.
|
|
798
|
+
return this.av;
|
|
784
799
|
},
|
|
785
800
|
set: function (a) {
|
|
786
|
-
this.
|
|
801
|
+
this.av = a;
|
|
787
802
|
this.g("GroupTextMarginLeft");
|
|
788
803
|
},
|
|
789
804
|
enumerable: false,
|
|
@@ -791,10 +806,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
791
806
|
});
|
|
792
807
|
Object.defineProperty(DataLegendDescription.prototype, "groupTextMarginRight", {
|
|
793
808
|
get: function () {
|
|
794
|
-
return this.
|
|
809
|
+
return this.aw;
|
|
795
810
|
},
|
|
796
811
|
set: function (a) {
|
|
797
|
-
this.
|
|
812
|
+
this.aw = a;
|
|
798
813
|
this.g("GroupTextMarginRight");
|
|
799
814
|
},
|
|
800
815
|
enumerable: false,
|
|
@@ -802,10 +817,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
802
817
|
});
|
|
803
818
|
Object.defineProperty(DataLegendDescription.prototype, "groupTextMarginTop", {
|
|
804
819
|
get: function () {
|
|
805
|
-
return this.
|
|
820
|
+
return this.ax;
|
|
806
821
|
},
|
|
807
822
|
set: function (a) {
|
|
808
|
-
this.
|
|
823
|
+
this.ax = a;
|
|
809
824
|
this.g("GroupTextMarginTop");
|
|
810
825
|
},
|
|
811
826
|
enumerable: false,
|
|
@@ -813,10 +828,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
813
828
|
});
|
|
814
829
|
Object.defineProperty(DataLegendDescription.prototype, "groupRowMarginBottom", {
|
|
815
830
|
get: function () {
|
|
816
|
-
return this.
|
|
831
|
+
return this.ap;
|
|
817
832
|
},
|
|
818
833
|
set: function (a) {
|
|
819
|
-
this.
|
|
834
|
+
this.ap = a;
|
|
820
835
|
this.g("GroupRowMarginBottom");
|
|
821
836
|
},
|
|
822
837
|
enumerable: false,
|
|
@@ -824,10 +839,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
824
839
|
});
|
|
825
840
|
Object.defineProperty(DataLegendDescription.prototype, "groupRowMarginLeft", {
|
|
826
841
|
get: function () {
|
|
827
|
-
return this.
|
|
842
|
+
return this.aq;
|
|
828
843
|
},
|
|
829
844
|
set: function (a) {
|
|
830
|
-
this.
|
|
845
|
+
this.aq = a;
|
|
831
846
|
this.g("GroupRowMarginLeft");
|
|
832
847
|
},
|
|
833
848
|
enumerable: false,
|
|
@@ -835,10 +850,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
835
850
|
});
|
|
836
851
|
Object.defineProperty(DataLegendDescription.prototype, "groupRowMarginRight", {
|
|
837
852
|
get: function () {
|
|
838
|
-
return this.
|
|
853
|
+
return this.ar;
|
|
839
854
|
},
|
|
840
855
|
set: function (a) {
|
|
841
|
-
this.
|
|
856
|
+
this.ar = a;
|
|
842
857
|
this.g("GroupRowMarginRight");
|
|
843
858
|
},
|
|
844
859
|
enumerable: false,
|
|
@@ -846,10 +861,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
846
861
|
});
|
|
847
862
|
Object.defineProperty(DataLegendDescription.prototype, "groupRowMarginTop", {
|
|
848
863
|
get: function () {
|
|
849
|
-
return this.
|
|
864
|
+
return this.as;
|
|
850
865
|
},
|
|
851
866
|
set: function (a) {
|
|
852
|
-
this.
|
|
867
|
+
this.as = a;
|
|
853
868
|
this.g("GroupRowMarginTop");
|
|
854
869
|
},
|
|
855
870
|
enumerable: false,
|
|
@@ -857,10 +872,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
857
872
|
});
|
|
858
873
|
Object.defineProperty(DataLegendDescription.prototype, "groupTextFontFamily", {
|
|
859
874
|
get: function () {
|
|
860
|
-
return this.
|
|
875
|
+
return this.eb;
|
|
861
876
|
},
|
|
862
877
|
set: function (a) {
|
|
863
|
-
this.
|
|
878
|
+
this.eb = a;
|
|
864
879
|
this.g("GroupTextFontFamily");
|
|
865
880
|
},
|
|
866
881
|
enumerable: false,
|
|
@@ -868,10 +883,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
868
883
|
});
|
|
869
884
|
Object.defineProperty(DataLegendDescription.prototype, "groupTextFontSize", {
|
|
870
885
|
get: function () {
|
|
871
|
-
return this.
|
|
886
|
+
return this.at;
|
|
872
887
|
},
|
|
873
888
|
set: function (a) {
|
|
874
|
-
this.
|
|
889
|
+
this.at = a;
|
|
875
890
|
this.g("GroupTextFontSize");
|
|
876
891
|
},
|
|
877
892
|
enumerable: false,
|
|
@@ -879,10 +894,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
879
894
|
});
|
|
880
895
|
Object.defineProperty(DataLegendDescription.prototype, "groupTextFontStyle", {
|
|
881
896
|
get: function () {
|
|
882
|
-
return this.
|
|
897
|
+
return this.ec;
|
|
883
898
|
},
|
|
884
899
|
set: function (a) {
|
|
885
|
-
this.
|
|
900
|
+
this.ec = a;
|
|
886
901
|
this.g("GroupTextFontStyle");
|
|
887
902
|
},
|
|
888
903
|
enumerable: false,
|
|
@@ -890,10 +905,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
890
905
|
});
|
|
891
906
|
Object.defineProperty(DataLegendDescription.prototype, "groupTextFontWeight", {
|
|
892
907
|
get: function () {
|
|
893
|
-
return this.
|
|
908
|
+
return this.ed;
|
|
894
909
|
},
|
|
895
910
|
set: function (a) {
|
|
896
|
-
this.
|
|
911
|
+
this.ed = a;
|
|
897
912
|
this.g("GroupTextFontWeight");
|
|
898
913
|
},
|
|
899
914
|
enumerable: false,
|
|
@@ -901,10 +916,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
901
916
|
});
|
|
902
917
|
Object.defineProperty(DataLegendDescription.prototype, "summaryTitleTextColor", {
|
|
903
918
|
get: function () {
|
|
904
|
-
return this.
|
|
919
|
+
return this.e6;
|
|
905
920
|
},
|
|
906
921
|
set: function (a) {
|
|
907
|
-
this.
|
|
922
|
+
this.e6 = a;
|
|
908
923
|
this.g("SummaryTitleTextColor");
|
|
909
924
|
},
|
|
910
925
|
enumerable: false,
|
|
@@ -912,10 +927,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
912
927
|
});
|
|
913
928
|
Object.defineProperty(DataLegendDescription.prototype, "summaryTitleTextFontFamily", {
|
|
914
929
|
get: function () {
|
|
915
|
-
return this.
|
|
930
|
+
return this.e7;
|
|
916
931
|
},
|
|
917
932
|
set: function (a) {
|
|
918
|
-
this.
|
|
933
|
+
this.e7 = a;
|
|
919
934
|
this.g("SummaryTitleTextFontFamily");
|
|
920
935
|
},
|
|
921
936
|
enumerable: false,
|
|
@@ -923,10 +938,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
923
938
|
});
|
|
924
939
|
Object.defineProperty(DataLegendDescription.prototype, "summaryTitleTextFontSize", {
|
|
925
940
|
get: function () {
|
|
926
|
-
return this.
|
|
941
|
+
return this.bi;
|
|
927
942
|
},
|
|
928
943
|
set: function (a) {
|
|
929
|
-
this.
|
|
944
|
+
this.bi = a;
|
|
930
945
|
this.g("SummaryTitleTextFontSize");
|
|
931
946
|
},
|
|
932
947
|
enumerable: false,
|
|
@@ -934,10 +949,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
934
949
|
});
|
|
935
950
|
Object.defineProperty(DataLegendDescription.prototype, "summaryTitleTextFontStyle", {
|
|
936
951
|
get: function () {
|
|
937
|
-
return this.
|
|
952
|
+
return this.e8;
|
|
938
953
|
},
|
|
939
954
|
set: function (a) {
|
|
940
|
-
this.
|
|
955
|
+
this.e8 = a;
|
|
941
956
|
this.g("SummaryTitleTextFontStyle");
|
|
942
957
|
},
|
|
943
958
|
enumerable: false,
|
|
@@ -945,10 +960,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
945
960
|
});
|
|
946
961
|
Object.defineProperty(DataLegendDescription.prototype, "summaryTitleTextFontWeight", {
|
|
947
962
|
get: function () {
|
|
948
|
-
return this.
|
|
963
|
+
return this.e9;
|
|
949
964
|
},
|
|
950
965
|
set: function (a) {
|
|
951
|
-
this.
|
|
966
|
+
this.e9 = a;
|
|
952
967
|
this.g("SummaryTitleTextFontWeight");
|
|
953
968
|
},
|
|
954
969
|
enumerable: false,
|
|
@@ -956,10 +971,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
956
971
|
});
|
|
957
972
|
Object.defineProperty(DataLegendDescription.prototype, "summaryType", {
|
|
958
973
|
get: function () {
|
|
959
|
-
return this.
|
|
974
|
+
return this.fa;
|
|
960
975
|
},
|
|
961
976
|
set: function (a) {
|
|
962
|
-
this.
|
|
977
|
+
this.fa = a;
|
|
963
978
|
this.g("SummaryType");
|
|
964
979
|
},
|
|
965
980
|
enumerable: false,
|
|
@@ -967,10 +982,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
967
982
|
});
|
|
968
983
|
Object.defineProperty(DataLegendDescription.prototype, "summaryTitleText", {
|
|
969
984
|
get: function () {
|
|
970
|
-
return this.
|
|
985
|
+
return this.e5;
|
|
971
986
|
},
|
|
972
987
|
set: function (a) {
|
|
973
|
-
this.
|
|
988
|
+
this.e5 = a;
|
|
974
989
|
this.g("SummaryTitleText");
|
|
975
990
|
},
|
|
976
991
|
enumerable: false,
|
|
@@ -978,10 +993,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
978
993
|
});
|
|
979
994
|
Object.defineProperty(DataLegendDescription.prototype, "summaryTitleTextMarginBottom", {
|
|
980
995
|
get: function () {
|
|
981
|
-
return this.
|
|
996
|
+
return this.bj;
|
|
982
997
|
},
|
|
983
998
|
set: function (a) {
|
|
984
|
-
this.
|
|
999
|
+
this.bj = a;
|
|
985
1000
|
this.g("SummaryTitleTextMarginBottom");
|
|
986
1001
|
},
|
|
987
1002
|
enumerable: false,
|
|
@@ -989,10 +1004,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
989
1004
|
});
|
|
990
1005
|
Object.defineProperty(DataLegendDescription.prototype, "summaryTitleTextMarginLeft", {
|
|
991
1006
|
get: function () {
|
|
992
|
-
return this.
|
|
1007
|
+
return this.bk;
|
|
993
1008
|
},
|
|
994
1009
|
set: function (a) {
|
|
995
|
-
this.
|
|
1010
|
+
this.bk = a;
|
|
996
1011
|
this.g("SummaryTitleTextMarginLeft");
|
|
997
1012
|
},
|
|
998
1013
|
enumerable: false,
|
|
@@ -1000,10 +1015,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1000
1015
|
});
|
|
1001
1016
|
Object.defineProperty(DataLegendDescription.prototype, "summaryTitleTextMarginRight", {
|
|
1002
1017
|
get: function () {
|
|
1003
|
-
return this.
|
|
1018
|
+
return this.bl;
|
|
1004
1019
|
},
|
|
1005
1020
|
set: function (a) {
|
|
1006
|
-
this.
|
|
1021
|
+
this.bl = a;
|
|
1007
1022
|
this.g("SummaryTitleTextMarginRight");
|
|
1008
1023
|
},
|
|
1009
1024
|
enumerable: false,
|
|
@@ -1011,10 +1026,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1011
1026
|
});
|
|
1012
1027
|
Object.defineProperty(DataLegendDescription.prototype, "summaryTitleTextMarginTop", {
|
|
1013
1028
|
get: function () {
|
|
1014
|
-
return this.
|
|
1029
|
+
return this.bm;
|
|
1015
1030
|
},
|
|
1016
1031
|
set: function (a) {
|
|
1017
|
-
this.
|
|
1032
|
+
this.bm = a;
|
|
1018
1033
|
this.g("SummaryTitleTextMarginTop");
|
|
1019
1034
|
},
|
|
1020
1035
|
enumerable: false,
|
|
@@ -1022,10 +1037,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1022
1037
|
});
|
|
1023
1038
|
Object.defineProperty(DataLegendDescription.prototype, "summaryRowMarginBottom", {
|
|
1024
1039
|
get: function () {
|
|
1025
|
-
return this.
|
|
1040
|
+
return this.be;
|
|
1026
1041
|
},
|
|
1027
1042
|
set: function (a) {
|
|
1028
|
-
this.
|
|
1043
|
+
this.be = a;
|
|
1029
1044
|
this.g("SummaryRowMarginBottom");
|
|
1030
1045
|
},
|
|
1031
1046
|
enumerable: false,
|
|
@@ -1033,10 +1048,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1033
1048
|
});
|
|
1034
1049
|
Object.defineProperty(DataLegendDescription.prototype, "summaryRowMarginLeft", {
|
|
1035
1050
|
get: function () {
|
|
1036
|
-
return this.
|
|
1051
|
+
return this.bf;
|
|
1037
1052
|
},
|
|
1038
1053
|
set: function (a) {
|
|
1039
|
-
this.
|
|
1054
|
+
this.bf = a;
|
|
1040
1055
|
this.g("SummaryRowMarginLeft");
|
|
1041
1056
|
},
|
|
1042
1057
|
enumerable: false,
|
|
@@ -1044,10 +1059,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1044
1059
|
});
|
|
1045
1060
|
Object.defineProperty(DataLegendDescription.prototype, "summaryRowMarginRight", {
|
|
1046
1061
|
get: function () {
|
|
1047
|
-
return this.
|
|
1062
|
+
return this.bg;
|
|
1048
1063
|
},
|
|
1049
1064
|
set: function (a) {
|
|
1050
|
-
this.
|
|
1065
|
+
this.bg = a;
|
|
1051
1066
|
this.g("SummaryRowMarginRight");
|
|
1052
1067
|
},
|
|
1053
1068
|
enumerable: false,
|
|
@@ -1055,10 +1070,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1055
1070
|
});
|
|
1056
1071
|
Object.defineProperty(DataLegendDescription.prototype, "summaryRowMarginTop", {
|
|
1057
1072
|
get: function () {
|
|
1058
|
-
return this.
|
|
1073
|
+
return this.bh;
|
|
1059
1074
|
},
|
|
1060
1075
|
set: function (a) {
|
|
1061
|
-
this.
|
|
1076
|
+
this.bh = a;
|
|
1062
1077
|
this.g("SummaryRowMarginTop");
|
|
1063
1078
|
},
|
|
1064
1079
|
enumerable: false,
|
|
@@ -1066,10 +1081,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1066
1081
|
});
|
|
1067
1082
|
Object.defineProperty(DataLegendDescription.prototype, "summaryValueTextColor", {
|
|
1068
1083
|
get: function () {
|
|
1069
|
-
return this.
|
|
1084
|
+
return this.fg;
|
|
1070
1085
|
},
|
|
1071
1086
|
set: function (a) {
|
|
1072
|
-
this.
|
|
1087
|
+
this.fg = a;
|
|
1073
1088
|
this.g("SummaryValueTextColor");
|
|
1074
1089
|
},
|
|
1075
1090
|
enumerable: false,
|
|
@@ -1077,10 +1092,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1077
1092
|
});
|
|
1078
1093
|
Object.defineProperty(DataLegendDescription.prototype, "summaryValueTextFontFamily", {
|
|
1079
1094
|
get: function () {
|
|
1080
|
-
return this.
|
|
1095
|
+
return this.fh;
|
|
1081
1096
|
},
|
|
1082
1097
|
set: function (a) {
|
|
1083
|
-
this.
|
|
1098
|
+
this.fh = a;
|
|
1084
1099
|
this.g("SummaryValueTextFontFamily");
|
|
1085
1100
|
},
|
|
1086
1101
|
enumerable: false,
|
|
@@ -1088,10 +1103,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1088
1103
|
});
|
|
1089
1104
|
Object.defineProperty(DataLegendDescription.prototype, "summaryValueTextFontSize", {
|
|
1090
1105
|
get: function () {
|
|
1091
|
-
return this.
|
|
1106
|
+
return this.bo;
|
|
1092
1107
|
},
|
|
1093
1108
|
set: function (a) {
|
|
1094
|
-
this.
|
|
1109
|
+
this.bo = a;
|
|
1095
1110
|
this.g("SummaryValueTextFontSize");
|
|
1096
1111
|
},
|
|
1097
1112
|
enumerable: false,
|
|
@@ -1099,10 +1114,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1099
1114
|
});
|
|
1100
1115
|
Object.defineProperty(DataLegendDescription.prototype, "summaryValueTextFontStyle", {
|
|
1101
1116
|
get: function () {
|
|
1102
|
-
return this.
|
|
1117
|
+
return this.fi;
|
|
1103
1118
|
},
|
|
1104
1119
|
set: function (a) {
|
|
1105
|
-
this.
|
|
1120
|
+
this.fi = a;
|
|
1106
1121
|
this.g("SummaryValueTextFontStyle");
|
|
1107
1122
|
},
|
|
1108
1123
|
enumerable: false,
|
|
@@ -1110,10 +1125,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1110
1125
|
});
|
|
1111
1126
|
Object.defineProperty(DataLegendDescription.prototype, "summaryValueTextFontWeight", {
|
|
1112
1127
|
get: function () {
|
|
1113
|
-
return this.
|
|
1128
|
+
return this.fj;
|
|
1114
1129
|
},
|
|
1115
1130
|
set: function (a) {
|
|
1116
|
-
this.
|
|
1131
|
+
this.fj = a;
|
|
1117
1132
|
this.g("SummaryValueTextFontWeight");
|
|
1118
1133
|
},
|
|
1119
1134
|
enumerable: false,
|
|
@@ -1121,10 +1136,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1121
1136
|
});
|
|
1122
1137
|
Object.defineProperty(DataLegendDescription.prototype, "summaryLabelText", {
|
|
1123
1138
|
get: function () {
|
|
1124
|
-
return this.
|
|
1139
|
+
return this.e0;
|
|
1125
1140
|
},
|
|
1126
1141
|
set: function (a) {
|
|
1127
|
-
this.
|
|
1142
|
+
this.e0 = a;
|
|
1128
1143
|
this.g("SummaryLabelText");
|
|
1129
1144
|
},
|
|
1130
1145
|
enumerable: false,
|
|
@@ -1132,10 +1147,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1132
1147
|
});
|
|
1133
1148
|
Object.defineProperty(DataLegendDescription.prototype, "summaryLabelTextColor", {
|
|
1134
1149
|
get: function () {
|
|
1135
|
-
return this.
|
|
1150
|
+
return this.e1;
|
|
1136
1151
|
},
|
|
1137
1152
|
set: function (a) {
|
|
1138
|
-
this.
|
|
1153
|
+
this.e1 = a;
|
|
1139
1154
|
this.g("SummaryLabelTextColor");
|
|
1140
1155
|
},
|
|
1141
1156
|
enumerable: false,
|
|
@@ -1143,10 +1158,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1143
1158
|
});
|
|
1144
1159
|
Object.defineProperty(DataLegendDescription.prototype, "summaryLabelTextFontFamily", {
|
|
1145
1160
|
get: function () {
|
|
1146
|
-
return this.
|
|
1161
|
+
return this.e2;
|
|
1147
1162
|
},
|
|
1148
1163
|
set: function (a) {
|
|
1149
|
-
this.
|
|
1164
|
+
this.e2 = a;
|
|
1150
1165
|
this.g("SummaryLabelTextFontFamily");
|
|
1151
1166
|
},
|
|
1152
1167
|
enumerable: false,
|
|
@@ -1154,10 +1169,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1154
1169
|
});
|
|
1155
1170
|
Object.defineProperty(DataLegendDescription.prototype, "summaryLabelTextFontSize", {
|
|
1156
1171
|
get: function () {
|
|
1157
|
-
return this.
|
|
1172
|
+
return this.bd;
|
|
1158
1173
|
},
|
|
1159
1174
|
set: function (a) {
|
|
1160
|
-
this.
|
|
1175
|
+
this.bd = a;
|
|
1161
1176
|
this.g("SummaryLabelTextFontSize");
|
|
1162
1177
|
},
|
|
1163
1178
|
enumerable: false,
|
|
@@ -1165,10 +1180,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1165
1180
|
});
|
|
1166
1181
|
Object.defineProperty(DataLegendDescription.prototype, "summaryLabelTextFontStyle", {
|
|
1167
1182
|
get: function () {
|
|
1168
|
-
return this.
|
|
1183
|
+
return this.e3;
|
|
1169
1184
|
},
|
|
1170
1185
|
set: function (a) {
|
|
1171
|
-
this.
|
|
1186
|
+
this.e3 = a;
|
|
1172
1187
|
this.g("SummaryLabelTextFontStyle");
|
|
1173
1188
|
},
|
|
1174
1189
|
enumerable: false,
|
|
@@ -1176,10 +1191,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1176
1191
|
});
|
|
1177
1192
|
Object.defineProperty(DataLegendDescription.prototype, "summaryLabelTextFontWeight", {
|
|
1178
1193
|
get: function () {
|
|
1179
|
-
return this.
|
|
1194
|
+
return this.e4;
|
|
1180
1195
|
},
|
|
1181
1196
|
set: function (a) {
|
|
1182
|
-
this.
|
|
1197
|
+
this.e4 = a;
|
|
1183
1198
|
this.g("SummaryLabelTextFontWeight");
|
|
1184
1199
|
},
|
|
1185
1200
|
enumerable: false,
|
|
@@ -1187,10 +1202,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1187
1202
|
});
|
|
1188
1203
|
Object.defineProperty(DataLegendDescription.prototype, "summaryUnitsText", {
|
|
1189
1204
|
get: function () {
|
|
1190
|
-
return this.
|
|
1205
|
+
return this.fb;
|
|
1191
1206
|
},
|
|
1192
1207
|
set: function (a) {
|
|
1193
|
-
this.
|
|
1208
|
+
this.fb = a;
|
|
1194
1209
|
this.g("SummaryUnitsText");
|
|
1195
1210
|
},
|
|
1196
1211
|
enumerable: false,
|
|
@@ -1198,10 +1213,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1198
1213
|
});
|
|
1199
1214
|
Object.defineProperty(DataLegendDescription.prototype, "summaryUnitsTextColor", {
|
|
1200
1215
|
get: function () {
|
|
1201
|
-
return this.
|
|
1216
|
+
return this.fc;
|
|
1202
1217
|
},
|
|
1203
1218
|
set: function (a) {
|
|
1204
|
-
this.
|
|
1219
|
+
this.fc = a;
|
|
1205
1220
|
this.g("SummaryUnitsTextColor");
|
|
1206
1221
|
},
|
|
1207
1222
|
enumerable: false,
|
|
@@ -1209,10 +1224,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1209
1224
|
});
|
|
1210
1225
|
Object.defineProperty(DataLegendDescription.prototype, "summaryUnitsTextFontFamily", {
|
|
1211
1226
|
get: function () {
|
|
1212
|
-
return this.
|
|
1227
|
+
return this.fd;
|
|
1213
1228
|
},
|
|
1214
1229
|
set: function (a) {
|
|
1215
|
-
this.
|
|
1230
|
+
this.fd = a;
|
|
1216
1231
|
this.g("SummaryUnitsTextFontFamily");
|
|
1217
1232
|
},
|
|
1218
1233
|
enumerable: false,
|
|
@@ -1220,10 +1235,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1220
1235
|
});
|
|
1221
1236
|
Object.defineProperty(DataLegendDescription.prototype, "summaryUnitsTextFontSize", {
|
|
1222
1237
|
get: function () {
|
|
1223
|
-
return this.
|
|
1238
|
+
return this.bn;
|
|
1224
1239
|
},
|
|
1225
1240
|
set: function (a) {
|
|
1226
|
-
this.
|
|
1241
|
+
this.bn = a;
|
|
1227
1242
|
this.g("SummaryUnitsTextFontSize");
|
|
1228
1243
|
},
|
|
1229
1244
|
enumerable: false,
|
|
@@ -1231,10 +1246,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1231
1246
|
});
|
|
1232
1247
|
Object.defineProperty(DataLegendDescription.prototype, "summaryUnitsTextFontStyle", {
|
|
1233
1248
|
get: function () {
|
|
1234
|
-
return this.
|
|
1249
|
+
return this.fe;
|
|
1235
1250
|
},
|
|
1236
1251
|
set: function (a) {
|
|
1237
|
-
this.
|
|
1252
|
+
this.fe = a;
|
|
1238
1253
|
this.g("SummaryUnitsTextFontStyle");
|
|
1239
1254
|
},
|
|
1240
1255
|
enumerable: false,
|
|
@@ -1242,10 +1257,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1242
1257
|
});
|
|
1243
1258
|
Object.defineProperty(DataLegendDescription.prototype, "summaryUnitsTextFontWeight", {
|
|
1244
1259
|
get: function () {
|
|
1245
|
-
return this.
|
|
1260
|
+
return this.ff;
|
|
1246
1261
|
},
|
|
1247
1262
|
set: function (a) {
|
|
1248
|
-
this.
|
|
1263
|
+
this.ff = a;
|
|
1249
1264
|
this.g("SummaryUnitsTextFontWeight");
|
|
1250
1265
|
},
|
|
1251
1266
|
enumerable: false,
|
|
@@ -1253,10 +1268,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1253
1268
|
});
|
|
1254
1269
|
Object.defineProperty(DataLegendDescription.prototype, "badgeMarginBottom", {
|
|
1255
1270
|
get: function () {
|
|
1256
|
-
return this.
|
|
1271
|
+
return this.ak;
|
|
1257
1272
|
},
|
|
1258
1273
|
set: function (a) {
|
|
1259
|
-
this.
|
|
1274
|
+
this.ak = a;
|
|
1260
1275
|
this.g("BadgeMarginBottom");
|
|
1261
1276
|
},
|
|
1262
1277
|
enumerable: false,
|
|
@@ -1264,10 +1279,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1264
1279
|
});
|
|
1265
1280
|
Object.defineProperty(DataLegendDescription.prototype, "badgeMarginLeft", {
|
|
1266
1281
|
get: function () {
|
|
1267
|
-
return this.
|
|
1282
|
+
return this.al;
|
|
1268
1283
|
},
|
|
1269
1284
|
set: function (a) {
|
|
1270
|
-
this.
|
|
1285
|
+
this.al = a;
|
|
1271
1286
|
this.g("BadgeMarginLeft");
|
|
1272
1287
|
},
|
|
1273
1288
|
enumerable: false,
|
|
@@ -1275,10 +1290,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1275
1290
|
});
|
|
1276
1291
|
Object.defineProperty(DataLegendDescription.prototype, "badgeMarginRight", {
|
|
1277
1292
|
get: function () {
|
|
1278
|
-
return this.
|
|
1293
|
+
return this.am;
|
|
1279
1294
|
},
|
|
1280
1295
|
set: function (a) {
|
|
1281
|
-
this.
|
|
1296
|
+
this.am = a;
|
|
1282
1297
|
this.g("BadgeMarginRight");
|
|
1283
1298
|
},
|
|
1284
1299
|
enumerable: false,
|
|
@@ -1286,10 +1301,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1286
1301
|
});
|
|
1287
1302
|
Object.defineProperty(DataLegendDescription.prototype, "badgeMarginTop", {
|
|
1288
1303
|
get: function () {
|
|
1289
|
-
return this.
|
|
1304
|
+
return this.an;
|
|
1290
1305
|
},
|
|
1291
1306
|
set: function (a) {
|
|
1292
|
-
this.
|
|
1307
|
+
this.an = a;
|
|
1293
1308
|
this.g("BadgeMarginTop");
|
|
1294
1309
|
},
|
|
1295
1310
|
enumerable: false,
|
|
@@ -1297,10 +1312,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1297
1312
|
});
|
|
1298
1313
|
Object.defineProperty(DataLegendDescription.prototype, "badgeShape", {
|
|
1299
1314
|
get: function () {
|
|
1300
|
-
return this.
|
|
1315
|
+
return this.d6;
|
|
1301
1316
|
},
|
|
1302
1317
|
set: function (a) {
|
|
1303
|
-
this.
|
|
1318
|
+
this.d6 = a;
|
|
1304
1319
|
this.g("BadgeShape");
|
|
1305
1320
|
},
|
|
1306
1321
|
enumerable: false,
|
|
@@ -1308,10 +1323,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1308
1323
|
});
|
|
1309
1324
|
Object.defineProperty(DataLegendDescription.prototype, "targetCursorPositionX", {
|
|
1310
1325
|
get: function () {
|
|
1311
|
-
return this.
|
|
1326
|
+
return this.bp;
|
|
1312
1327
|
},
|
|
1313
1328
|
set: function (a) {
|
|
1314
|
-
this.
|
|
1329
|
+
this.bp = a;
|
|
1315
1330
|
this.g("TargetCursorPositionX");
|
|
1316
1331
|
},
|
|
1317
1332
|
enumerable: false,
|
|
@@ -1319,10 +1334,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1319
1334
|
});
|
|
1320
1335
|
Object.defineProperty(DataLegendDescription.prototype, "targetCursorPositionY", {
|
|
1321
1336
|
get: function () {
|
|
1322
|
-
return this.
|
|
1337
|
+
return this.bq;
|
|
1323
1338
|
},
|
|
1324
1339
|
set: function (a) {
|
|
1325
|
-
this.
|
|
1340
|
+
this.bq = a;
|
|
1326
1341
|
this.g("TargetCursorPositionY");
|
|
1327
1342
|
},
|
|
1328
1343
|
enumerable: false,
|
|
@@ -1330,10 +1345,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1330
1345
|
});
|
|
1331
1346
|
Object.defineProperty(DataLegendDescription.prototype, "targetRef", {
|
|
1332
1347
|
get: function () {
|
|
1333
|
-
return this.
|
|
1348
|
+
return this.fk;
|
|
1334
1349
|
},
|
|
1335
1350
|
set: function (a) {
|
|
1336
|
-
this.
|
|
1351
|
+
this.fk = a;
|
|
1337
1352
|
this.g("TargetRef");
|
|
1338
1353
|
},
|
|
1339
1354
|
enumerable: false,
|
|
@@ -1341,10 +1356,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1341
1356
|
});
|
|
1342
1357
|
Object.defineProperty(DataLegendDescription.prototype, "unitsDisplayMode", {
|
|
1343
1358
|
get: function () {
|
|
1344
|
-
return this.
|
|
1359
|
+
return this.fp;
|
|
1345
1360
|
},
|
|
1346
1361
|
set: function (a) {
|
|
1347
|
-
this.
|
|
1362
|
+
this.fp = a;
|
|
1348
1363
|
this.g("UnitsDisplayMode");
|
|
1349
1364
|
},
|
|
1350
1365
|
enumerable: false,
|
|
@@ -1352,10 +1367,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1352
1367
|
});
|
|
1353
1368
|
Object.defineProperty(DataLegendDescription.prototype, "unitsText", {
|
|
1354
1369
|
get: function () {
|
|
1355
|
-
return this.
|
|
1370
|
+
return this.fq;
|
|
1356
1371
|
},
|
|
1357
1372
|
set: function (a) {
|
|
1358
|
-
this.
|
|
1373
|
+
this.fq = a;
|
|
1359
1374
|
this.g("UnitsText");
|
|
1360
1375
|
},
|
|
1361
1376
|
enumerable: false,
|
|
@@ -1363,10 +1378,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1363
1378
|
});
|
|
1364
1379
|
Object.defineProperty(DataLegendDescription.prototype, "unitsTextColor", {
|
|
1365
1380
|
get: function () {
|
|
1366
|
-
return this.
|
|
1381
|
+
return this.fr;
|
|
1367
1382
|
},
|
|
1368
1383
|
set: function (a) {
|
|
1369
|
-
this.
|
|
1384
|
+
this.fr = a;
|
|
1370
1385
|
this.g("UnitsTextColor");
|
|
1371
1386
|
},
|
|
1372
1387
|
enumerable: false,
|
|
@@ -1374,10 +1389,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1374
1389
|
});
|
|
1375
1390
|
Object.defineProperty(DataLegendDescription.prototype, "unitsTextMarginBottom", {
|
|
1376
1391
|
get: function () {
|
|
1377
|
-
return this.
|
|
1392
|
+
return this.bx;
|
|
1378
1393
|
},
|
|
1379
1394
|
set: function (a) {
|
|
1380
|
-
this.
|
|
1395
|
+
this.bx = a;
|
|
1381
1396
|
this.g("UnitsTextMarginBottom");
|
|
1382
1397
|
},
|
|
1383
1398
|
enumerable: false,
|
|
@@ -1385,10 +1400,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1385
1400
|
});
|
|
1386
1401
|
Object.defineProperty(DataLegendDescription.prototype, "unitsTextMarginLeft", {
|
|
1387
1402
|
get: function () {
|
|
1388
|
-
return this.
|
|
1403
|
+
return this.by;
|
|
1389
1404
|
},
|
|
1390
1405
|
set: function (a) {
|
|
1391
|
-
this.
|
|
1406
|
+
this.by = a;
|
|
1392
1407
|
this.g("UnitsTextMarginLeft");
|
|
1393
1408
|
},
|
|
1394
1409
|
enumerable: false,
|
|
@@ -1396,10 +1411,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1396
1411
|
});
|
|
1397
1412
|
Object.defineProperty(DataLegendDescription.prototype, "unitsTextMarginRight", {
|
|
1398
1413
|
get: function () {
|
|
1399
|
-
return this.
|
|
1414
|
+
return this.bz;
|
|
1400
1415
|
},
|
|
1401
1416
|
set: function (a) {
|
|
1402
|
-
this.
|
|
1417
|
+
this.bz = a;
|
|
1403
1418
|
this.g("UnitsTextMarginRight");
|
|
1404
1419
|
},
|
|
1405
1420
|
enumerable: false,
|
|
@@ -1407,10 +1422,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1407
1422
|
});
|
|
1408
1423
|
Object.defineProperty(DataLegendDescription.prototype, "unitsTextMarginTop", {
|
|
1409
1424
|
get: function () {
|
|
1410
|
-
return this.
|
|
1425
|
+
return this.b0;
|
|
1411
1426
|
},
|
|
1412
1427
|
set: function (a) {
|
|
1413
|
-
this.
|
|
1428
|
+
this.b0 = a;
|
|
1414
1429
|
this.g("UnitsTextMarginTop");
|
|
1415
1430
|
},
|
|
1416
1431
|
enumerable: false,
|
|
@@ -1418,10 +1433,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1418
1433
|
});
|
|
1419
1434
|
Object.defineProperty(DataLegendDescription.prototype, "unitsTextFontFamily", {
|
|
1420
1435
|
get: function () {
|
|
1421
|
-
return this.
|
|
1436
|
+
return this.fs;
|
|
1422
1437
|
},
|
|
1423
1438
|
set: function (a) {
|
|
1424
|
-
this.
|
|
1439
|
+
this.fs = a;
|
|
1425
1440
|
this.g("UnitsTextFontFamily");
|
|
1426
1441
|
},
|
|
1427
1442
|
enumerable: false,
|
|
@@ -1429,10 +1444,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1429
1444
|
});
|
|
1430
1445
|
Object.defineProperty(DataLegendDescription.prototype, "unitsTextFontSize", {
|
|
1431
1446
|
get: function () {
|
|
1432
|
-
return this.
|
|
1447
|
+
return this.bw;
|
|
1433
1448
|
},
|
|
1434
1449
|
set: function (a) {
|
|
1435
|
-
this.
|
|
1450
|
+
this.bw = a;
|
|
1436
1451
|
this.g("UnitsTextFontSize");
|
|
1437
1452
|
},
|
|
1438
1453
|
enumerable: false,
|
|
@@ -1440,10 +1455,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1440
1455
|
});
|
|
1441
1456
|
Object.defineProperty(DataLegendDescription.prototype, "unitsTextFontStyle", {
|
|
1442
1457
|
get: function () {
|
|
1443
|
-
return this.
|
|
1458
|
+
return this.ft;
|
|
1444
1459
|
},
|
|
1445
1460
|
set: function (a) {
|
|
1446
|
-
this.
|
|
1461
|
+
this.ft = a;
|
|
1447
1462
|
this.g("UnitsTextFontStyle");
|
|
1448
1463
|
},
|
|
1449
1464
|
enumerable: false,
|
|
@@ -1451,10 +1466,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1451
1466
|
});
|
|
1452
1467
|
Object.defineProperty(DataLegendDescription.prototype, "unitsTextFontWeight", {
|
|
1453
1468
|
get: function () {
|
|
1454
|
-
return this.
|
|
1469
|
+
return this.fu;
|
|
1455
1470
|
},
|
|
1456
1471
|
set: function (a) {
|
|
1457
|
-
this.
|
|
1472
|
+
this.fu = a;
|
|
1458
1473
|
this.g("UnitsTextFontWeight");
|
|
1459
1474
|
},
|
|
1460
1475
|
enumerable: false,
|
|
@@ -1462,10 +1477,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1462
1477
|
});
|
|
1463
1478
|
Object.defineProperty(DataLegendDescription.prototype, "titleTextMarginBottom", {
|
|
1464
1479
|
get: function () {
|
|
1465
|
-
return this.
|
|
1480
|
+
return this.bs;
|
|
1466
1481
|
},
|
|
1467
1482
|
set: function (a) {
|
|
1468
|
-
this.
|
|
1483
|
+
this.bs = a;
|
|
1469
1484
|
this.g("TitleTextMarginBottom");
|
|
1470
1485
|
},
|
|
1471
1486
|
enumerable: false,
|
|
@@ -1473,10 +1488,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1473
1488
|
});
|
|
1474
1489
|
Object.defineProperty(DataLegendDescription.prototype, "titleTextMarginLeft", {
|
|
1475
1490
|
get: function () {
|
|
1476
|
-
return this.
|
|
1491
|
+
return this.bt;
|
|
1477
1492
|
},
|
|
1478
1493
|
set: function (a) {
|
|
1479
|
-
this.
|
|
1494
|
+
this.bt = a;
|
|
1480
1495
|
this.g("TitleTextMarginLeft");
|
|
1481
1496
|
},
|
|
1482
1497
|
enumerable: false,
|
|
@@ -1484,10 +1499,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1484
1499
|
});
|
|
1485
1500
|
Object.defineProperty(DataLegendDescription.prototype, "titleTextMarginRight", {
|
|
1486
1501
|
get: function () {
|
|
1487
|
-
return this.
|
|
1502
|
+
return this.bu;
|
|
1488
1503
|
},
|
|
1489
1504
|
set: function (a) {
|
|
1490
|
-
this.
|
|
1505
|
+
this.bu = a;
|
|
1491
1506
|
this.g("TitleTextMarginRight");
|
|
1492
1507
|
},
|
|
1493
1508
|
enumerable: false,
|
|
@@ -1495,10 +1510,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1495
1510
|
});
|
|
1496
1511
|
Object.defineProperty(DataLegendDescription.prototype, "titleTextMarginTop", {
|
|
1497
1512
|
get: function () {
|
|
1498
|
-
return this.
|
|
1513
|
+
return this.bv;
|
|
1499
1514
|
},
|
|
1500
1515
|
set: function (a) {
|
|
1501
|
-
this.
|
|
1516
|
+
this.bv = a;
|
|
1502
1517
|
this.g("TitleTextMarginTop");
|
|
1503
1518
|
},
|
|
1504
1519
|
enumerable: false,
|
|
@@ -1506,10 +1521,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1506
1521
|
});
|
|
1507
1522
|
Object.defineProperty(DataLegendDescription.prototype, "titleTextColor", {
|
|
1508
1523
|
get: function () {
|
|
1509
|
-
return this.
|
|
1524
|
+
return this.fl;
|
|
1510
1525
|
},
|
|
1511
1526
|
set: function (a) {
|
|
1512
|
-
this.
|
|
1527
|
+
this.fl = a;
|
|
1513
1528
|
this.g("TitleTextColor");
|
|
1514
1529
|
},
|
|
1515
1530
|
enumerable: false,
|
|
@@ -1517,10 +1532,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1517
1532
|
});
|
|
1518
1533
|
Object.defineProperty(DataLegendDescription.prototype, "titleTextFontFamily", {
|
|
1519
1534
|
get: function () {
|
|
1520
|
-
return this.
|
|
1535
|
+
return this.fm;
|
|
1521
1536
|
},
|
|
1522
1537
|
set: function (a) {
|
|
1523
|
-
this.
|
|
1538
|
+
this.fm = a;
|
|
1524
1539
|
this.g("TitleTextFontFamily");
|
|
1525
1540
|
},
|
|
1526
1541
|
enumerable: false,
|
|
@@ -1528,10 +1543,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1528
1543
|
});
|
|
1529
1544
|
Object.defineProperty(DataLegendDescription.prototype, "titleTextFontSize", {
|
|
1530
1545
|
get: function () {
|
|
1531
|
-
return this.
|
|
1546
|
+
return this.br;
|
|
1532
1547
|
},
|
|
1533
1548
|
set: function (a) {
|
|
1534
|
-
this.
|
|
1549
|
+
this.br = a;
|
|
1535
1550
|
this.g("TitleTextFontSize");
|
|
1536
1551
|
},
|
|
1537
1552
|
enumerable: false,
|
|
@@ -1539,10 +1554,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1539
1554
|
});
|
|
1540
1555
|
Object.defineProperty(DataLegendDescription.prototype, "titleTextFontStyle", {
|
|
1541
1556
|
get: function () {
|
|
1542
|
-
return this.
|
|
1557
|
+
return this.fn;
|
|
1543
1558
|
},
|
|
1544
1559
|
set: function (a) {
|
|
1545
|
-
this.
|
|
1560
|
+
this.fn = a;
|
|
1546
1561
|
this.g("TitleTextFontStyle");
|
|
1547
1562
|
},
|
|
1548
1563
|
enumerable: false,
|
|
@@ -1550,10 +1565,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1550
1565
|
});
|
|
1551
1566
|
Object.defineProperty(DataLegendDescription.prototype, "titleTextFontWeight", {
|
|
1552
1567
|
get: function () {
|
|
1553
|
-
return this.
|
|
1568
|
+
return this.fo;
|
|
1554
1569
|
},
|
|
1555
1570
|
set: function (a) {
|
|
1556
|
-
this.
|
|
1571
|
+
this.fo = a;
|
|
1557
1572
|
this.g("TitleTextFontWeight");
|
|
1558
1573
|
},
|
|
1559
1574
|
enumerable: false,
|
|
@@ -1561,10 +1576,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1561
1576
|
});
|
|
1562
1577
|
Object.defineProperty(DataLegendDescription.prototype, "labelDisplayMode", {
|
|
1563
1578
|
get: function () {
|
|
1564
|
-
return this.
|
|
1579
|
+
return this.eo;
|
|
1565
1580
|
},
|
|
1566
1581
|
set: function (a) {
|
|
1567
|
-
this.
|
|
1582
|
+
this.eo = a;
|
|
1568
1583
|
this.g("LabelDisplayMode");
|
|
1569
1584
|
},
|
|
1570
1585
|
enumerable: false,
|
|
@@ -1572,10 +1587,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1572
1587
|
});
|
|
1573
1588
|
Object.defineProperty(DataLegendDescription.prototype, "labelTextColor", {
|
|
1574
1589
|
get: function () {
|
|
1575
|
-
return this.
|
|
1590
|
+
return this.ep;
|
|
1576
1591
|
},
|
|
1577
1592
|
set: function (a) {
|
|
1578
|
-
this.
|
|
1593
|
+
this.ep = a;
|
|
1579
1594
|
this.g("LabelTextColor");
|
|
1580
1595
|
},
|
|
1581
1596
|
enumerable: false,
|
|
@@ -1583,10 +1598,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1583
1598
|
});
|
|
1584
1599
|
Object.defineProperty(DataLegendDescription.prototype, "labelTextMarginBottom", {
|
|
1585
1600
|
get: function () {
|
|
1586
|
-
return this.
|
|
1601
|
+
return this.a8;
|
|
1587
1602
|
},
|
|
1588
1603
|
set: function (a) {
|
|
1589
|
-
this.
|
|
1604
|
+
this.a8 = a;
|
|
1590
1605
|
this.g("LabelTextMarginBottom");
|
|
1591
1606
|
},
|
|
1592
1607
|
enumerable: false,
|
|
@@ -1594,10 +1609,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1594
1609
|
});
|
|
1595
1610
|
Object.defineProperty(DataLegendDescription.prototype, "labelTextMarginLeft", {
|
|
1596
1611
|
get: function () {
|
|
1597
|
-
return this.
|
|
1612
|
+
return this.a9;
|
|
1598
1613
|
},
|
|
1599
1614
|
set: function (a) {
|
|
1600
|
-
this.
|
|
1615
|
+
this.a9 = a;
|
|
1601
1616
|
this.g("LabelTextMarginLeft");
|
|
1602
1617
|
},
|
|
1603
1618
|
enumerable: false,
|
|
@@ -1605,10 +1620,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1605
1620
|
});
|
|
1606
1621
|
Object.defineProperty(DataLegendDescription.prototype, "labelTextMarginRight", {
|
|
1607
1622
|
get: function () {
|
|
1608
|
-
return this.
|
|
1623
|
+
return this.ba;
|
|
1609
1624
|
},
|
|
1610
1625
|
set: function (a) {
|
|
1611
|
-
this.
|
|
1626
|
+
this.ba = a;
|
|
1612
1627
|
this.g("LabelTextMarginRight");
|
|
1613
1628
|
},
|
|
1614
1629
|
enumerable: false,
|
|
@@ -1616,10 +1631,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1616
1631
|
});
|
|
1617
1632
|
Object.defineProperty(DataLegendDescription.prototype, "labelTextMarginTop", {
|
|
1618
1633
|
get: function () {
|
|
1619
|
-
return this.
|
|
1634
|
+
return this.bb;
|
|
1620
1635
|
},
|
|
1621
1636
|
set: function (a) {
|
|
1622
|
-
this.
|
|
1637
|
+
this.bb = a;
|
|
1623
1638
|
this.g("LabelTextMarginTop");
|
|
1624
1639
|
},
|
|
1625
1640
|
enumerable: false,
|
|
@@ -1627,10 +1642,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1627
1642
|
});
|
|
1628
1643
|
Object.defineProperty(DataLegendDescription.prototype, "labelTextFontFamily", {
|
|
1629
1644
|
get: function () {
|
|
1630
|
-
return this.
|
|
1645
|
+
return this.eq;
|
|
1631
1646
|
},
|
|
1632
1647
|
set: function (a) {
|
|
1633
|
-
this.
|
|
1648
|
+
this.eq = a;
|
|
1634
1649
|
this.g("LabelTextFontFamily");
|
|
1635
1650
|
},
|
|
1636
1651
|
enumerable: false,
|
|
@@ -1638,10 +1653,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1638
1653
|
});
|
|
1639
1654
|
Object.defineProperty(DataLegendDescription.prototype, "labelTextFontSize", {
|
|
1640
1655
|
get: function () {
|
|
1641
|
-
return this.
|
|
1656
|
+
return this.a7;
|
|
1642
1657
|
},
|
|
1643
1658
|
set: function (a) {
|
|
1644
|
-
this.
|
|
1659
|
+
this.a7 = a;
|
|
1645
1660
|
this.g("LabelTextFontSize");
|
|
1646
1661
|
},
|
|
1647
1662
|
enumerable: false,
|
|
@@ -1649,10 +1664,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1649
1664
|
});
|
|
1650
1665
|
Object.defineProperty(DataLegendDescription.prototype, "labelTextFontStyle", {
|
|
1651
1666
|
get: function () {
|
|
1652
|
-
return this.
|
|
1667
|
+
return this.er;
|
|
1653
1668
|
},
|
|
1654
1669
|
set: function (a) {
|
|
1655
|
-
this.
|
|
1670
|
+
this.er = a;
|
|
1656
1671
|
this.g("LabelTextFontStyle");
|
|
1657
1672
|
},
|
|
1658
1673
|
enumerable: false,
|
|
@@ -1660,10 +1675,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1660
1675
|
});
|
|
1661
1676
|
Object.defineProperty(DataLegendDescription.prototype, "labelTextFontWeight", {
|
|
1662
1677
|
get: function () {
|
|
1663
|
-
return this.
|
|
1678
|
+
return this.es;
|
|
1664
1679
|
},
|
|
1665
1680
|
set: function (a) {
|
|
1666
|
-
this.
|
|
1681
|
+
this.es = a;
|
|
1667
1682
|
this.g("LabelTextFontWeight");
|
|
1668
1683
|
},
|
|
1669
1684
|
enumerable: false,
|
|
@@ -1671,10 +1686,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1671
1686
|
});
|
|
1672
1687
|
Object.defineProperty(DataLegendDescription.prototype, "pixelScalingRatio", {
|
|
1673
1688
|
get: function () {
|
|
1674
|
-
return this.
|
|
1689
|
+
return this.bc;
|
|
1675
1690
|
},
|
|
1676
1691
|
set: function (a) {
|
|
1677
|
-
this.
|
|
1692
|
+
this.bc = a;
|
|
1678
1693
|
this.g("PixelScalingRatio");
|
|
1679
1694
|
},
|
|
1680
1695
|
enumerable: false,
|
|
@@ -1682,21 +1697,54 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1682
1697
|
});
|
|
1683
1698
|
Object.defineProperty(DataLegendDescription.prototype, "layoutMode", {
|
|
1684
1699
|
get: function () {
|
|
1685
|
-
return this.
|
|
1700
|
+
return this.et;
|
|
1686
1701
|
},
|
|
1687
1702
|
set: function (a) {
|
|
1688
|
-
this.
|
|
1703
|
+
this.et = a;
|
|
1689
1704
|
this.g("LayoutMode");
|
|
1690
1705
|
},
|
|
1691
1706
|
enumerable: false,
|
|
1692
1707
|
configurable: true
|
|
1693
1708
|
});
|
|
1709
|
+
Object.defineProperty(DataLegendDescription.prototype, "contentBackground", {
|
|
1710
|
+
get: function () {
|
|
1711
|
+
return this.d8;
|
|
1712
|
+
},
|
|
1713
|
+
set: function (a) {
|
|
1714
|
+
this.d8 = a;
|
|
1715
|
+
this.g("ContentBackground");
|
|
1716
|
+
},
|
|
1717
|
+
enumerable: false,
|
|
1718
|
+
configurable: true
|
|
1719
|
+
});
|
|
1720
|
+
Object.defineProperty(DataLegendDescription.prototype, "contentBorderBrush", {
|
|
1721
|
+
get: function () {
|
|
1722
|
+
return this.d9;
|
|
1723
|
+
},
|
|
1724
|
+
set: function (a) {
|
|
1725
|
+
this.d9 = a;
|
|
1726
|
+
this.g("ContentBorderBrush");
|
|
1727
|
+
},
|
|
1728
|
+
enumerable: false,
|
|
1729
|
+
configurable: true
|
|
1730
|
+
});
|
|
1731
|
+
Object.defineProperty(DataLegendDescription.prototype, "contentBorderThickness", {
|
|
1732
|
+
get: function () {
|
|
1733
|
+
return this.ao;
|
|
1734
|
+
},
|
|
1735
|
+
set: function (a) {
|
|
1736
|
+
this.ao = a;
|
|
1737
|
+
this.g("ContentBorderThickness");
|
|
1738
|
+
},
|
|
1739
|
+
enumerable: false,
|
|
1740
|
+
configurable: true
|
|
1741
|
+
});
|
|
1694
1742
|
Object.defineProperty(DataLegendDescription.prototype, "calculateColumnSummaryRef", {
|
|
1695
1743
|
get: function () {
|
|
1696
|
-
return this.
|
|
1744
|
+
return this.d7;
|
|
1697
1745
|
},
|
|
1698
1746
|
set: function (a) {
|
|
1699
|
-
this.
|
|
1747
|
+
this.d7 = a;
|
|
1700
1748
|
this.g("CalculateColumnSummaryRef");
|
|
1701
1749
|
},
|
|
1702
1750
|
enumerable: false,
|
|
@@ -1704,10 +1752,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1704
1752
|
});
|
|
1705
1753
|
Object.defineProperty(DataLegendDescription.prototype, "styleHeaderRowRef", {
|
|
1706
1754
|
get: function () {
|
|
1707
|
-
return this.
|
|
1755
|
+
return this.ev;
|
|
1708
1756
|
},
|
|
1709
1757
|
set: function (a) {
|
|
1710
|
-
this.
|
|
1758
|
+
this.ev = a;
|
|
1711
1759
|
this.g("StyleHeaderRowRef");
|
|
1712
1760
|
},
|
|
1713
1761
|
enumerable: false,
|
|
@@ -1715,10 +1763,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1715
1763
|
});
|
|
1716
1764
|
Object.defineProperty(DataLegendDescription.prototype, "styleGroupRowRef", {
|
|
1717
1765
|
get: function () {
|
|
1718
|
-
return this.
|
|
1766
|
+
return this.eu;
|
|
1719
1767
|
},
|
|
1720
1768
|
set: function (a) {
|
|
1721
|
-
this.
|
|
1769
|
+
this.eu = a;
|
|
1722
1770
|
this.g("StyleGroupRowRef");
|
|
1723
1771
|
},
|
|
1724
1772
|
enumerable: false,
|
|
@@ -1726,10 +1774,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1726
1774
|
});
|
|
1727
1775
|
Object.defineProperty(DataLegendDescription.prototype, "styleSeriesRowRef", {
|
|
1728
1776
|
get: function () {
|
|
1729
|
-
return this.
|
|
1777
|
+
return this.ex;
|
|
1730
1778
|
},
|
|
1731
1779
|
set: function (a) {
|
|
1732
|
-
this.
|
|
1780
|
+
this.ex = a;
|
|
1733
1781
|
this.g("StyleSeriesRowRef");
|
|
1734
1782
|
},
|
|
1735
1783
|
enumerable: false,
|
|
@@ -1737,10 +1785,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1737
1785
|
});
|
|
1738
1786
|
Object.defineProperty(DataLegendDescription.prototype, "styleSummaryRowRef", {
|
|
1739
1787
|
get: function () {
|
|
1740
|
-
return this.
|
|
1788
|
+
return this.ez;
|
|
1741
1789
|
},
|
|
1742
1790
|
set: function (a) {
|
|
1743
|
-
this.
|
|
1791
|
+
this.ez = a;
|
|
1744
1792
|
this.g("StyleSummaryRowRef");
|
|
1745
1793
|
},
|
|
1746
1794
|
enumerable: false,
|
|
@@ -1748,10 +1796,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1748
1796
|
});
|
|
1749
1797
|
Object.defineProperty(DataLegendDescription.prototype, "styleSeriesColumnRef", {
|
|
1750
1798
|
get: function () {
|
|
1751
|
-
return this.
|
|
1799
|
+
return this.ew;
|
|
1752
1800
|
},
|
|
1753
1801
|
set: function (a) {
|
|
1754
|
-
this.
|
|
1802
|
+
this.ew = a;
|
|
1755
1803
|
this.g("StyleSeriesColumnRef");
|
|
1756
1804
|
},
|
|
1757
1805
|
enumerable: false,
|
|
@@ -1759,10 +1807,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1759
1807
|
});
|
|
1760
1808
|
Object.defineProperty(DataLegendDescription.prototype, "styleSummaryColumnRef", {
|
|
1761
1809
|
get: function () {
|
|
1762
|
-
return this.
|
|
1810
|
+
return this.ey;
|
|
1763
1811
|
},
|
|
1764
1812
|
set: function (a) {
|
|
1765
|
-
this.
|
|
1813
|
+
this.ey = a;
|
|
1766
1814
|
this.g("StyleSummaryColumnRef");
|
|
1767
1815
|
},
|
|
1768
1816
|
enumerable: false,
|
|
@@ -1770,10 +1818,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1770
1818
|
});
|
|
1771
1819
|
Object.defineProperty(DataLegendDescription.prototype, "width", {
|
|
1772
1820
|
get: function () {
|
|
1773
|
-
return this.
|
|
1821
|
+
return this.f5;
|
|
1774
1822
|
},
|
|
1775
1823
|
set: function (a) {
|
|
1776
|
-
this.
|
|
1824
|
+
this.f5 = a;
|
|
1777
1825
|
this.g("Width");
|
|
1778
1826
|
},
|
|
1779
1827
|
enumerable: false,
|
|
@@ -1781,10 +1829,10 @@ var DataLegendDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1781
1829
|
});
|
|
1782
1830
|
Object.defineProperty(DataLegendDescription.prototype, "height", {
|
|
1783
1831
|
get: function () {
|
|
1784
|
-
return this.
|
|
1832
|
+
return this.en;
|
|
1785
1833
|
},
|
|
1786
1834
|
set: function (a) {
|
|
1787
|
-
this.
|
|
1835
|
+
this.en = a;
|
|
1788
1836
|
this.g("Height");
|
|
1789
1837
|
},
|
|
1790
1838
|
enumerable: false,
|